Home
last modified time | relevance | path

Searched refs:spdk_json_number_to_uint64 (Results 1 – 6 of 6) sorted by relevance

/spdk/lib/json/
H A Dspdk_json.map28 spdk_json_number_to_uint64;
H A Djson_util.c277 spdk_json_number_to_uint64(const struct spdk_json_val *val, uint64_t *num) in spdk_json_number_to_uint64() function
480 return spdk_json_number_to_uint64(val, i); in spdk_json_decode_uint64()
/spdk/test/unit/lib/
H A Djson_mock.c66 DEFINE_STUB(spdk_json_number_to_uint64, int, (const struct spdk_json_val *val, uint64_t *num), 0);
/spdk/test/app/fuzz/common/
H A Dfuzz_common.h259 rc = spdk_json_number_to_uint64(val, &tmp_val); in fuzz_parse_json_num()
/spdk/include/spdk/
H A Djson.h187 int spdk_json_number_to_uint64(const struct spdk_json_val *val, uint64_t *num);
/spdk/test/unit/lib/json/json_util.c/
H A Djson_util_ut.c41 CU_ASSERT(spdk_json_number_to_uint64(&v, &u64) == 0); \
46 CU_ASSERT(spdk_json_number_to_uint64(&v, &u64) != 0)
131 CU_ASSERT(spdk_json_number_to_uint64(&v, &u64) == 0); in test_num_to_uint64()