Lines Matching defs:val
263 cap_string(const struct spdk_json_val *val, void *out)
267 if (val->type != SPDK_JSON_VAL_STRING) {
271 *vptr = val;
276 cap_object(const struct spdk_json_val *val, void *out)
280 if (val->type != SPDK_JSON_VAL_OBJECT_BEGIN) {
284 *vptr = val;
290 cap_array_or_null(const struct spdk_json_val *val, void *out)
294 if (val->type != SPDK_JSON_VAL_ARRAY_BEGIN && val->type != SPDK_JSON_VAL_NULL) {
298 *vptr = val;