Lines Matching refs:cJSON_bool
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);
192 CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item);
193 CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item);
194 CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item);
195 CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item);
196 CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item);
197 CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item);
203 CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean);
227 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToArray(cJSON *array, cJSON *item);
228 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item);
232 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item);
234 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item);
235 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *i…
247 CJSON_PUBLIC(cJSON_bool) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem); /* Shift…
248 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemViaPointer(cJSON * const parent, cJSON * const item, cJSO…
249 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem);
250 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObject(cJSON *object,const char *string,cJSON *newitem);
251 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object,const char *string,cJ…
254 CJSON_PUBLIC(cJSON *) cJSON_Duplicate(const cJSON *item, cJSON_bool recurse);
260 CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bo…
272 …N*) cJSON_AddBoolToObject(cJSON * const object, const char * const name, const cJSON_bool boolean);