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/
H A DcJSON.h26 typedef int cJSON_bool; typedef
53 cJSON_bool cJSON_IsNumber(const cJSON* const item);
54 cJSON_bool cJSON_IsString(const cJSON* const item);
61 cJSON_bool cJSON_AddItemToArray(cJSON* array, cJSON* item);
63 cJSON_bool cJSON_AddItemToObject(cJSON* object, const char* string, cJSON* item);
64 cJSON_bool cJSON_ReplaceItemInObject(cJSON* object, const char* string, cJSON* newitem);
/base/security/access_token/interfaces/innerkits/nativetoken/test/mock/src/
H A DcJSON.c78 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(g_handle, "cJSON_IsNumber"); in cJSON_IsNumber()
88 cJSON_bool res = func(item); in cJSON_IsNumber()
92 cJSON_bool cJSON_IsString(const cJSON* const item) in cJSON_IsString()
101 cJSON_bool (*func)(const cJSON* const item); in cJSON_IsString()
102 func = (cJSON_bool (*)(const cJSON* const item))dlsym(g_handle, "cJSON_IsString"); in cJSON_IsString()
106 cJSON_bool res = func(item); in cJSON_IsString()
225 cJSON_bool cJSON_AddItemToArray(cJSON* array, cJSON* item) in cJSON_AddItemToArray()
235 cJSON_bool (*fun in cJSON_AddItemToArray()
[all...]

Completed in 1 milliseconds