Lines Matching refs:cJSON_bool
50 #define true ((cJSON_bool)1)
51 #define false ((cJSON_bool)0)
230 static cJSON_bool parse_number(cJSON * const item, parse_buffer * const input_buffer) in parse_number()
331 cJSON_bool noalloc;
332 cJSON_bool format; /* is this print a formatted print */
430 static cJSON_bool print_number(const cJSON * const item, printbuffer * const output_buffer) in print_number()
654 static cJSON_bool parse_string(cJSON * const item, parse_buffer * const input_buffer) in parse_string()
783 static cJSON_bool print_string_ptr(const unsigned char * const input, printbuffer * const output_bu… in print_string_ptr()
905 static cJSON_bool print_string(const cJSON * const item, printbuffer * const p) in print_string()
911 static cJSON_bool parse_value(cJSON * const item, parse_buffer * const input_buffer);
912 static cJSON_bool print_value(const cJSON * const item, printbuffer * const output_buffer);
913 static cJSON_bool parse_array(cJSON * const item, parse_buffer * const input_buffer);
914 static cJSON_bool print_array(const cJSON * const item, printbuffer * const output_buffer);
915 static cJSON_bool parse_object(cJSON * const item, parse_buffer * const input_buffer);
916 static cJSON_bool print_object(const cJSON * const item, printbuffer * const output_buffer);
940 … cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_bool require_null_ter… in cJSON_ParseWithOpts()
1029 static unsigned char *print(const cJSON * const item, cJSON_bool format, const internal_hooks * con… in print()
1102 CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt) in cJSON_PrintBuffered()
1131 CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buf, const int len, const cJSON… in cJSON_PrintPreallocated()
1151 static cJSON_bool parse_value(cJSON * const item, parse_buffer * const input_buffer) in parse_value()
1207 static cJSON_bool print_value(const cJSON * const item, printbuffer * const output_buffer) in print_value()
1285 static cJSON_bool parse_array(cJSON * const item, parse_buffer * const input_buffer) in parse_array()
1379 static cJSON_bool print_array(const cJSON * const item, printbuffer * const output_buffer) in print_array()
1441 static cJSON_bool parse_object(cJSON * const item, parse_buffer * const input_buffer) in parse_object()
1550 static cJSON_bool print_object(const cJSON * const item, printbuffer * const output_buffer) in print_object()
1708 static cJSON *get_object_item(const cJSON * const object, const char * const name, const cJSON_bool… in get_object_item()
1746 CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string) in cJSON_HasObjectItem()
1944 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemViaPointer(cJSON * const parent, cJSON * const item, cJSO… in cJSON_ReplaceItemViaPointer()
2033 CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool b) in cJSON_CreateBool()
2271 CJSON_PUBLIC(cJSON *) cJSON_Duplicate(const cJSON *item, cJSON_bool recurse) in cJSON_Duplicate()
2414 CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON * const item) in cJSON_IsInvalid()
2424 CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item) in cJSON_IsFalse()
2434 CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item) in cJSON_IsTrue()
2445 CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item) in cJSON_IsBool()
2454 CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item) in cJSON_IsNull()
2464 CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item) in cJSON_IsNumber()
2474 CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) in cJSON_IsString()
2484 CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) in cJSON_IsArray()
2494 CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item) in cJSON_IsObject()
2504 CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item) in cJSON_IsRaw()
2514 CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bo… in cJSON_Compare()