Lines Matching refs:cJSON_bool

128 typedef int cJSON_bool;  typedef
148 … cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_bool require_null_ter…
149 …onst char *value, size_t buffer_length, const char **return_parse_end, cJSON_bool require_null_ter…
156 CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt);
159 CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buffer, const int length, const…
170 CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string);
179 CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON *const item);
180 CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON *const item);
181 CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON *const item);
182 CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON *const item);
183 CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON *const item);
184 CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON *const item);
185 CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON *const item);
186 CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON *const item);
187 CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON *const item);
188 CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON *const item);
194 CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean);
218 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToArray(cJSON *array, cJSON *item);
219 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item);
223 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item);
225 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item);
226 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *i…
238 CJSON_PUBLIC(cJSON_bool) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem); /* Shift…
239 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemViaPointer(cJSON *const parent, cJSON *const item, cJSON …
240 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem);
241 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObject(cJSON *object, const char *string, cJSON *newite…
242 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object, const char *string, …
245 CJSON_PUBLIC(cJSON *) cJSON_Duplicate(const cJSON *item, cJSON_bool recurse);
251 CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON *const a, const cJSON *const b, const cJSON_bool
263 …ON *) cJSON_AddBoolToObject(cJSON *const object, const char *const name, const cJSON_bool boolean);