Home
last modified time | relevance | path

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

/iperf/src/
H A Dcjson.c1877 …t_object_item(const cJSON * const object, const char * const name, const cJSON_bool case_sensitive) in get_object_item() argument
1887 if (case_sensitive) in get_object_item()
2343 …ce_item_in_object(cJSON *object, const char *string, cJSON *replacement, cJSON_bool case_sensitive) in replace_item_in_object() argument
2358 …return cJSON_ReplaceItemViaPointer(object, get_object_item(object, string, case_sensitive), replac… in replace_item_in_object()
2952 …_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive) in cJSON_Compare() argument
3017 if (!cJSON_Compare(a_element, b_element, case_sensitive)) in cJSON_Compare()
3041 b_element = get_object_item(b, a_element->string, case_sensitive); in cJSON_Compare()
3047 if (!cJSON_Compare(a_element, b_element, case_sensitive)) in cJSON_Compare()
3057 a_element = get_object_item(a, b_element->string, case_sensitive); in cJSON_Compare()
3063 if (!cJSON_Compare(b_element, a_element, case_sensitive)) in cJSON_Compare()
H A Dcjson.h260 …bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive);