Lines Matching refs:string
127 char *string; member
177 CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string);
178 …C(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string);
179 CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string);
205 CJSON_PUBLIC(cJSON *) cJSON_CreateString(const char *string);
213 CJSON_PUBLIC(cJSON *) cJSON_CreateStringReference(const char *string);
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);
235 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *i…
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);
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…
274 … cJSON_AddStringToObject(cJSON * const object, const char * const name, const char * const string);