Home
last modified time | relevance | path

Searched refs:cJSON_String (Results 1 – 2 of 2) sorted by relevance

/external/iperf3/src/
Dcjson.c411 if (!(object->type & cJSON_String) || (object->type & cJSON_IsReference)) in cJSON_SetValuestring()
884 item->type = cJSON_String; in parse_string()
1431 case cJSON_String: in print_value()
2447 item->type = cJSON_String; in cJSON_CreateString()
2464 item->type = cJSON_String | cJSON_IsReference; in cJSON_CreateStringReference()
2919 return (item->type & 0xFF) == cJSON_String; in cJSON_IsString()
2966 case cJSON_String: in cJSON_Compare()
2997 case cJSON_String: in cJSON_Compare()
Dcjson.h99 #define cJSON_String (1 << 4) macro