Home
last modified time | relevance | path

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

/external/iperf3/src/
Dcjson.h86 typedef int cJSON_bool; typedef
151 CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt);
154 CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buffer, const int length, const…
165 CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string);
170 CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON * const item);
171 CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item);
172 CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item);
173 CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item);
174 CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item);
175 CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item);
[all …]
Dcjson.c50 #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);
[all …]