Home
last modified time | relevance | path

Searched refs:SPDK_JSON_VAL_NUMBER (Results 1 – 10 of 10) sorted by relevance

/spdk/test/app/fuzz/nvme_fuzz/
H A Dnvme_fuzz.c103 if (next_val->type == SPDK_JSON_VAL_NUMBER) { in parse_nvme_cmd_obj()
110 if (next_val->type == SPDK_JSON_VAL_NUMBER) { in parse_nvme_cmd_obj()
117 if (next_val->type == SPDK_JSON_VAL_NUMBER) { in parse_nvme_cmd_obj()
124 if (next_val->type == SPDK_JSON_VAL_NUMBER) { in parse_nvme_cmd_obj()
131 if (next_val->type == SPDK_JSON_VAL_NUMBER) { in parse_nvme_cmd_obj()
138 if (next_val->type == SPDK_JSON_VAL_NUMBER) { in parse_nvme_cmd_obj()
145 if (next_val->type == SPDK_JSON_VAL_NUMBER) { in parse_nvme_cmd_obj()
152 if (next_val->type == SPDK_JSON_VAL_NUMBER) { in parse_nvme_cmd_obj()
159 if (next_val->type == SPDK_JSON_VAL_NUMBER) { in parse_nvme_cmd_obj()
173 if (next_val->type == SPDK_JSON_VAL_NUMBER) { in parse_nvme_cmd_obj()
[all …]
/spdk/test/unit/lib/json/json_util.c/
H A Djson_util_ut.c17 v.type = SPDK_JSON_VAL_NUMBER; \
64 v.type = SPDK_JSON_VAL_NUMBER; in test_strequal()
163 {"234", 3, SPDK_JSON_VAL_NUMBER}, in test_decode_object()
268 values[1].type = SPDK_JSON_VAL_NUMBER; in test_decode_array()
271 values[2].type = SPDK_JSON_VAL_NUMBER; in test_decode_array()
295 values[0].type = SPDK_JSON_VAL_NUMBER; in test_decode_array()
296 values[2].type = SPDK_JSON_VAL_NUMBER; in test_decode_array()
356 v.type = SPDK_JSON_VAL_NUMBER; in test_decode_int32()
381 v.type = SPDK_JSON_VAL_NUMBER; in test_decode_int32()
394 v.type = SPDK_JSON_VAL_NUMBER; in test_decode_int32()
[all...]
/spdk/test/unit/lib/jsonrpc/jsonrpc_server.c/
H A Djsonrpc_server_ut.c51 CU_ASSERT(g_request->id && g_request->id->type == SPDK_JSON_VAL_NUMBER); \
90 CU_ASSERT(g_cur_param->type == SPDK_JSON_VAL_NUMBER); \
/spdk/lib/jsonrpc/
H A Djsonrpc_client.c27 if (val->type != SPDK_JSON_VAL_STRING && val->type != SPDK_JSON_VAL_NUMBER) { in capture_id()
H A Djsonrpc_server.c107 req.id->type == SPDK_JSON_VAL_NUMBER || in parse_single_request()
/spdk/lib/json/
H A Djson_util.c95 if (val->type != SPDK_JSON_VAL_NUMBER) { in json_number_split()
677 case SPDK_JSON_VAL_NUMBER: in spdk_json_next()
H A Djson_parse.c509 ADD_VALUE(SPDK_JSON_VAL_NUMBER, data, data + rc); in spdk_json_parse()
H A Djson_write.c626 case SPDK_JSON_VAL_NUMBER: in spdk_json_write_val()
/spdk/include/spdk/
H A Djson.h27 SPDK_JSON_VAL_NUMBER = 1U << 4, enumerator
/spdk/test/unit/lib/json/json_parse.c/
H A Djson_parse_ut.c60 #define VAL_NUMBER(num) VAL_STRING_MATCH(num, SPDK_JSON_VAL_NUMBER)