Lines Matching refs:cJSON_bool
59 #define true ((cJSON_bool)1)
64 #define false ((cJSON_bool)0)
83 …trings(const unsigned char *string1, const unsigned char *string2, const cJSON_bool case_sensitive) in compare_strings()
112 static cJSON_bool compare_double(double a, double b) in compare_double()
120 static cJSON_bool compare_pointers(const unsigned char *name, const unsigned char *pointer, const c… in compare_pointers()
274 static cJSON_bool decode_array_index_from_pointer(const unsigned char * const pointer, size_t * con… in decode_array_index_from_pointer()
301 static cJSON *get_item_from_pointer(cJSON * const object, const char * pointer, const cJSON_bool ca… in get_item_from_pointer()
430 static cJSON *detach_path(cJSON *object, const unsigned char *path, const cJSON_bool case_sensitive) in detach_path()
484 static cJSON *sort_list(cJSON *list, const cJSON_bool case_sensitive) in sort_list()
595 static void sort_object(cJSON * const object, const cJSON_bool case_sensitive) in sort_object()
604 static cJSON_bool compare_json(cJSON *a, cJSON *b, const cJSON_bool case_sensitive) in compare_json()
638 cJSON_bool identical = compare_json(a, b, case_sensitive); in compare_json()
660 cJSON_bool identical = false; in compare_json()
693 static cJSON_bool insert_item_in_array(cJSON *array, size_t which, cJSON *newitem) in insert_item_in_array()
730 static cJSON *get_object_item(const cJSON * const object, const char* name, const cJSON_bool case_s… in get_object_item()
742 static enum patch_operation decode_patch_operation(const cJSON * const patch, const cJSON_bool case… in decode_patch_operation()
807 static int apply_patch(cJSON *object, const cJSON *patch, const cJSON_bool case_sensitive) in apply_patch()
1141 … unsigned char * const path, cJSON * const from, cJSON * const to, const cJSON_bool case_sensitive) in create_patches()
1321 static cJSON *merge_patch(cJSON *target, const cJSON * const patch, const cJSON_bool case_sensitive) in merge_patch()
1390 static cJSON *generate_merge_patch(cJSON * const from, cJSON * const to, const cJSON_bool case_sens… in generate_merge_patch()