Searched refs:cJSON_bool (Results 1 – 5 of 5) sorted by relevance
/AliOS-Things-master/components/cjson/include/ |
A D | cJSON.h | 132 typedef int cJSON_bool; typedef 161 CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buffer, const int length, const… 181 CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item); 182 CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item); 183 CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item); 184 CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item); 185 CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item); 187 CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item); 189 CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item); 195 CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean); [all …]
|
/AliOS-Things-master/components/cjson/src/ |
A D | cJSON.c | 61 #define true ((cJSON_bool)1) 62 #define false ((cJSON_bool)0) 367 cJSON_bool noalloc; 368 cJSON_bool format; /* is this print a formatted print */ 1192 CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buf, const int len, const cJSON… in cJSON_PrintPreallocated() 1844 static cJSON_bool add_item_to_array(cJSON *array, cJSON *item) in add_item_to_array() 2215 static cJSON_bool replace_item_in_object(cJSON *object, const char *string, cJSON *replacement, cJS… in replace_item_in_object() 2279 CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool b) in cJSON_CreateBool() 2719 CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item) in cJSON_IsTrue() 2789 CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item) in cJSON_IsRaw() [all …]
|
/AliOS-Things-master/components/cjson/ |
A D | README.md | 80 cJSON_bool cJSON_IsBool(const cJSON * const item); 88 cJSON_bool cJSON_IsNumber(const cJSON * const item); 96 cJSON_bool cJSON_IsString(const cJSON * const item); 104 cJSON_bool cJSON_IsArray(const cJSON * const item); 112 cJSON_bool cJSON_IsObject(const cJSON * const item);
|
/AliOS-Things-master/components/linkkit/infra/ |
A D | infra_cjson.c | 920 #define true ((cJSON_bool)1) 921 #define false ((cJSON_bool)0) 935 cJSON_bool noalloc; 936 cJSON_bool format; /* is this print a formatted print */ 954 static cJSON_bool print_value(const lite_cjson_item_t *const item, 1084 static cJSON_bool print_number(const lite_cjson_item_t *const item, in print_number() 1286 static cJSON_bool print_array(const lite_cjson_item_t *const item, in print_array() 1442 static cJSON_bool print_value(const lite_cjson_item_t *const item, in print_value() 1510 cJSON_bool format, in print() 1601 static cJSON_bool add_item_to_array(lite_cjson_item_t *array, in add_item_to_array() [all …]
|
/AliOS-Things-master/components/linkkit/include/linkkit/infra/ |
A D | infra_cjson.h | 58 typedef int cJSON_bool; typedef
|
Completed in 14 milliseconds