Lines Matching refs:values
296 _json_decode_object(const struct spdk_json_val *values, in _json_decode_object() argument
304 if (values == NULL || values->type != SPDK_JSON_VAL_OBJECT_BEGIN) { in _json_decode_object()
313 for (i = 0; i < values->len;) { in _json_decode_object()
314 const struct spdk_json_val *name = &values[i + 1]; in _json_decode_object()
315 const struct spdk_json_val *v = &values[i + 2]; in _json_decode_object()
385 spdk_json_decode_object(const struct spdk_json_val *values, in spdk_json_decode_object() argument
388 return _json_decode_object(values, decoders, num_decoders, out, false); in spdk_json_decode_object()
392 spdk_json_decode_object_relaxed(const struct spdk_json_val *values, in spdk_json_decode_object_relaxed() argument
395 return _json_decode_object(values, decoders, num_decoders, out, true); in spdk_json_decode_object_relaxed()
399 spdk_json_decode_array(const struct spdk_json_val *values, spdk_json_decode_fn decode_func, in spdk_json_decode_array() argument
405 if (values == NULL || values->type != SPDK_JSON_VAL_ARRAY_BEGIN) { in spdk_json_decode_array()
411 for (i = 0; i < values->len;) { in spdk_json_decode_array()
412 const struct spdk_json_val *v = &values[i + 1]; in spdk_json_decode_array()