Lines Matching refs:cJSON

58 typedef struct cJSON  struct
61 struct cJSON *next; argument
62 struct cJSON *prev; argument
64 struct cJSON *child; argument
78 } cJSON; argument
145 CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value);
147 CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item);
149 CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item);
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…
156 CJSON_PUBLIC(void) cJSON_Delete(cJSON *c);
159 CJSON_PUBLIC(int) cJSON_GetArraySize(const cJSON *array);
161 CJSON_PUBLIC(cJSON *) cJSON_GetArrayItem(const cJSON *array, int index);
163 CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string);
164 CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * con…
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);
176 CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item);
177 CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item);
178 CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item);
179 CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item);
182 CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void);
183 CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void);
184 CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void);
185 CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean);
186 CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num);
187 CJSON_PUBLIC(cJSON *) cJSON_CreateString(const char *string);
189 CJSON_PUBLIC(cJSON *) cJSON_CreateRaw(const char *raw);
190 CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void);
191 CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void);
194 CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count);
195 CJSON_PUBLIC(cJSON *) cJSON_CreateFloatArray(const float *numbers, int count);
196 CJSON_PUBLIC(cJSON *) cJSON_CreateDoubleArray(const double *numbers, int count);
197 CJSON_PUBLIC(cJSON *) cJSON_CreateStringArray(const char **strings, int count);
200 CJSON_PUBLIC(void) cJSON_AddItemToArray(cJSON *array, cJSON *item);
201 CJSON_PUBLIC(void) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item);
205 CJSON_PUBLIC(void) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item);
207 CJSON_PUBLIC(void) cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item);
208 CJSON_PUBLIC(void) cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *item);
211 CJSON_PUBLIC(cJSON *) cJSON_DetachItemViaPointer(cJSON *parent, cJSON * const item);
212 CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromArray(cJSON *array, int which);
213 CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which);
214 CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string);
215 CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string);
216 CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string);
217 CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string);
220 CJSON_PUBLIC(void) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem); /* Shifts pre-…
221 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemViaPointer(cJSON * const parent, cJSON * const item, cJSO…
222 CJSON_PUBLIC(void) cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem);
223 CJSON_PUBLIC(void) cJSON_ReplaceItemInObject(cJSON *object,const char *string,cJSON *newitem);
224 CJSON_PUBLIC(void) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object,const char *string,cJSON *n…
227 CJSON_PUBLIC(cJSON *) cJSON_Duplicate(const cJSON *item, cJSON_bool recurse);
233 CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bo…
238 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_b…
254 CJSON_PUBLIC(double) cJSON_SetNumberHelper(cJSON *object, double number);