Searched refs:cJSON_bool (Results 1 – 2 of 2) sorted by relevance
/external/iperf3/src/ |
D | cjson.h | 137 typedef int cJSON_bool; typedef 157 … cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_bool require_null_ter… 158 …onst char *value, size_t buffer_length, const char **return_parse_end, cJSON_bool require_null_ter… 165 CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt); 168 CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buffer, const int length, const… 179 CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string); 188 CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON * const item); 189 CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item); 190 CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item); 191 CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item); [all …]
|
D | cjson.c | 69 #define true ((cJSON_bool)1) 74 #define false ((cJSON_bool)0) 312 static cJSON_bool parse_number(cJSON * const item, parse_buffer * const input_buffer) in parse_number() 440 cJSON_bool noalloc; 441 cJSON_bool format; /* is this print a formatted print */ 547 static cJSON_bool compare_double(double a, double b) in compare_double() 554 static cJSON_bool print_number(const cJSON * const item, printbuffer * const output_buffer) in print_number() 778 static cJSON_bool parse_string(cJSON * const item, parse_buffer * const input_buffer) in parse_string() 907 static cJSON_bool print_string_ptr(const unsigned char * const input, printbuffer * const output_bu… in print_string_ptr() 1029 static cJSON_bool print_string(const cJSON * const item, printbuffer * const p) in print_string() [all …]
|