• Home
  • Raw
  • Download

Lines Matching refs:cJSON

108 typedef struct cJSON  struct
111 struct cJSON *next; argument
112 struct cJSON *prev; argument
114 struct cJSON *child; argument
128 } cJSON; typedef
153 CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value);
154 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length);
157 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_b…
158 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLengthOpts(const char *value, size_t buffer_length, const char…
161 CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item);
163 CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item);
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…
170 CJSON_PUBLIC(void) cJSON_Delete(cJSON *item);
173 CJSON_PUBLIC(int) cJSON_GetArraySize(const cJSON *array);
175 CJSON_PUBLIC(cJSON *) cJSON_GetArrayItem(const cJSON *array, int index);
177 CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string);
178 CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * con…
179 CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string);
184 CJSON_PUBLIC(char *) cJSON_GetStringValue(cJSON *item);
185 CJSON_PUBLIC(double) cJSON_GetNumberValue(cJSON *item);
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);
200 CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void);
201 CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void);
202 CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void);
203 CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean);
204 CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num);
205 CJSON_PUBLIC(cJSON *) cJSON_CreateString(const char *string);
207 CJSON_PUBLIC(cJSON *) cJSON_CreateRaw(const char *raw);
208 CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void);
209 CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void);
213 CJSON_PUBLIC(cJSON *) cJSON_CreateStringReference(const char *string);
216 CJSON_PUBLIC(cJSON *) cJSON_CreateObjectReference(const cJSON *child);
217 CJSON_PUBLIC(cJSON *) cJSON_CreateArrayReference(const cJSON *child);
221 CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count);
222 CJSON_PUBLIC(cJSON *) cJSON_CreateFloatArray(const float *numbers, int count);
223 CJSON_PUBLIC(cJSON *) cJSON_CreateDoubleArray(const double *numbers, int count);
224 CJSON_PUBLIC(cJSON *) cJSON_CreateStringArray(const char *const *strings, int count);
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…
238 CJSON_PUBLIC(cJSON *) cJSON_DetachItemViaPointer(cJSON *parent, cJSON * const item);
239 CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromArray(cJSON *array, int which);
240 CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which);
241 CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string);
242 CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string);
243 CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string);
244 CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string);
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 …UBLIC(cJSON_bool) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object,const char *string,cJSON *n…
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…
269 CJSON_PUBLIC(cJSON*) cJSON_AddNullToObject(cJSON * const object, const char * const name);
270 CJSON_PUBLIC(cJSON*) cJSON_AddTrueToObject(cJSON * const object, const char * const name);
271 CJSON_PUBLIC(cJSON*) cJSON_AddFalseToObject(cJSON * const object, const char * const name);
272 CJSON_PUBLIC(cJSON*) cJSON_AddBoolToObject(cJSON * const object, const char * const name, const cJS…
273 CJSON_PUBLIC(cJSON*) cJSON_AddNumberToObject(cJSON * const object, const char * const name, const d…
274 CJSON_PUBLIC(cJSON*) cJSON_AddStringToObject(cJSON * const object, const char * const name, const c…
275 CJSON_PUBLIC(cJSON*) cJSON_AddRawToObject(cJSON * const object, const char * const name, const char…
276 CJSON_PUBLIC(cJSON*) cJSON_AddObjectToObject(cJSON * const object, const char * const name);
277 CJSON_PUBLIC(cJSON*) cJSON_AddArrayToObject(cJSON * const object, const char * const name);
282 CJSON_PUBLIC(double) cJSON_SetNumberHelper(cJSON *object, double number);
285 CJSON_PUBLIC(char*) cJSON_SetValuestring(cJSON *object, const char *valuestring);