Home
last modified time | relevance | path

Searched refs:cJSON_bool (Results 1 – 2 of 2) sorted by relevance

/base/security/access_token/interfaces/innerkits/nativetoken/test/mock/include/
DcJSON.h27 typedef int cJSON_bool; typedef
55 cJSON_bool cJSON_IsNumber(const cJSON* const item);
56 cJSON_bool cJSON_IsString(const cJSON* const item);
63 cJSON_bool cJSON_AddItemToArray(cJSON* array, cJSON* item);
65 cJSON_bool cJSON_AddItemToObject(cJSON* object, const char* string, cJSON* item);
66 cJSON_bool cJSON_ReplaceItemInObject(cJSON* object, const char* string, cJSON* newitem);
/base/security/access_token/interfaces/innerkits/nativetoken/test/mock/src/
DcJSON.c77 cJSON_bool cJSON_IsNumber(const cJSON* const item) in cJSON_IsNumber()
83 cJSON_bool (*func)(const cJSON* const item); in cJSON_IsNumber()
84 func = (cJSON_bool (*)(const cJSON* const item))dlsym(handle, "cJSON_IsNumber"); in cJSON_IsNumber()
88 cJSON_bool res = func(item); in cJSON_IsNumber()
96 cJSON_bool cJSON_IsString(const cJSON* const item) in cJSON_IsString()
106 cJSON_bool (*func)(const cJSON* const item); in cJSON_IsString()
107 func = (cJSON_bool (*)(const cJSON* const item))dlsym(handle, "cJSON_IsString"); in cJSON_IsString()
111 cJSON_bool res = func(item); in cJSON_IsString()
249 cJSON_bool cJSON_AddItemToArray(cJSON* array, cJSON* item) in cJSON_AddItemToArray()
259 cJSON_bool (*func)(cJSON* array, cJSON* item); in cJSON_AddItemToArray()
[all …]