Home
last modified time | relevance | path

Searched refs:CJSON_PUBLIC (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/app/lvgl_demo/cJSON/
H A DcJSON.h64 #define CJSON_PUBLIC(type) type CJSON_STDCALL macro
66 #define CJSON_PUBLIC(type) __declspec(dllexport) type CJSON_STDCALL
68 #define CJSON_PUBLIC(type) __declspec(dllimport) type CJSON_STDCALL
75 #define CJSON_PUBLIC(type) __attribute__((visibility("default"))) type
77 #define CJSON_PUBLIC(type) type
141 CJSON_PUBLIC(const char*) cJSON_Version(void);
144 CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks* hooks);
148 CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value);
149 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length);
152 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_b…
[all …]
H A DcJSON.c94 CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void) in cJSON_GetErrorPtr()
99 CJSON_PUBLIC(char *) cJSON_GetStringValue(const cJSON * const item) in cJSON_GetStringValue()
109 CJSON_PUBLIC(double) cJSON_GetNumberValue(const cJSON * const item) in cJSON_GetNumberValue()
124 CJSON_PUBLIC(const char*) cJSON_Version(void) in cJSON_Version()
209 CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks* hooks) in cJSON_InitHooks()
253 CJSON_PUBLIC(void) cJSON_Delete(cJSON *item) in cJSON_Delete()
382 CJSON_PUBLIC(double) cJSON_SetNumberHelper(cJSON *object, double number) in cJSON_SetNumberHelper()
400 CJSON_PUBLIC(char*) cJSON_SetValuestring(cJSON *object, const char *valuestring) in cJSON_SetValuestring()
1075 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_b… in cJSON_ParseWithOpts()
1091 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLengthOpts(const char *value, size_t buffer_length, const char… in cJSON_ParseWithLengthOpts()
[all …]
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/include/iq_parser_v2/j2s/
H A DcJSON.h59 #define CJSON_PUBLIC(type) type CJSON_STDCALL macro
61 #define CJSON_PUBLIC(type) __declspec(dllexport) type CJSON_STDCALL macro
63 #define CJSON_PUBLIC(type) __declspec(dllimport) type CJSON_STDCALL macro
70 #define CJSON_PUBLIC(type) __attribute__((visibility("default"))) type macro
72 #define CJSON_PUBLIC(type) type macro
139 CJSON_PUBLIC(const char*) cJSON_Version(void);
142 CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks* hooks);
146 CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value);
147 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length);
150 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_b…
[all …]
H A DcJSON_Utils.h32 CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointer(cJSON * const object, const char *pointer);
33 CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointerCaseSensitive(cJSON * const object, const char *pointer);
37 CJSON_PUBLIC(cJSON *) cJSONUtils_GeneratePatches(cJSON * const from, cJSON * const to);
38 CJSON_PUBLIC(cJSON *) cJSONUtils_GeneratePatchesCaseSensitive(cJSON * const from, cJSON * const to);
40 CJSON_PUBLIC(void) cJSONUtils_AddPatchToArray(cJSON * const array, const char * const operation, co…
42 CJSON_PUBLIC(int) cJSONUtils_ApplyPatches(cJSON * const object, const cJSON * const patches);
43 CJSON_PUBLIC(int) cJSONUtils_ApplyPatchesCaseSensitive(cJSON * const object, const cJSON * const pa…
68 CJSON_PUBLIC(cJSON *) cJSONUtils_MergePatch(cJSON *target, const cJSON * const patch);
69 CJSON_PUBLIC(cJSON *) cJSONUtils_MergePatchCaseSensitive(cJSON *target, const cJSON * const patch);
72 CJSON_PUBLIC(cJSON *) cJSONUtils_GenerateMergePatch(cJSON * const from, cJSON * const to);
[all …]
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser_v2/j2s/
H A DcJSON.cpp96 CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void) in cJSON_GetErrorPtr()
101 CJSON_PUBLIC(char *) cJSON_GetStringValue(const cJSON * const item) in cJSON_GetStringValue()
111 CJSON_PUBLIC(double) cJSON_GetNumberValue(const cJSON * const item) in cJSON_GetNumberValue()
126 CJSON_PUBLIC(const char*) cJSON_Version(void) in cJSON_Version()
211 CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks* hooks) in cJSON_InitHooks()
255 CJSON_PUBLIC(void) cJSON_Delete(cJSON *item) in cJSON_Delete()
384 CJSON_PUBLIC(double) cJSON_SetNumberHelper(cJSON *object, double number) in cJSON_SetNumberHelper()
402 CJSON_PUBLIC(char*) cJSON_SetValuestring(cJSON *object, const char *valuestring) in cJSON_SetValuestring()
1084 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_b… in cJSON_ParseWithOpts()
1100 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLengthOpts(const char *value, size_t buffer_length, const char… in cJSON_ParseWithLengthOpts()
[all …]
H A DcJSON_Utils.cpp203 CJSON_PUBLIC(char *) cJSONUtils_FindPointerFromObjectTo(const cJSON * const object, const cJSON * c… in cJSONUtils_FindPointerFromObjectTo()
353 CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointer(cJSON * const object, const char *pointer) in cJSONUtils_GetPointer()
358 CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointerCaseSensitive(cJSON * const object, const char *pointer) in cJSONUtils_GetPointerCaseSensitive()
1041 CJSON_PUBLIC(int) cJSONUtils_ApplyPatches(cJSON * const object, const cJSON * const patches) in cJSONUtils_ApplyPatches()
1070 CJSON_PUBLIC(int) cJSONUtils_ApplyPatchesCaseSensitive(cJSON * const object, const cJSON * const pa… in cJSONUtils_ApplyPatchesCaseSensitive()
1139 CJSON_PUBLIC(void) cJSONUtils_AddPatchToArray(cJSON * const array, const char * const operation, co… in cJSONUtils_AddPatchToArray()
1284 CJSON_PUBLIC(cJSON *) cJSONUtils_GeneratePatches(cJSON * const from, cJSON * const to) in cJSONUtils_GeneratePatches()
1299 CJSON_PUBLIC(cJSON *) cJSONUtils_GeneratePatchesCaseSensitive(cJSON * const from, cJSON * const to) in cJSONUtils_GeneratePatchesCaseSensitive()
1314 CJSON_PUBLIC(void) cJSONUtils_SortObject(cJSON * const object) in cJSONUtils_SortObject()
1319 CJSON_PUBLIC(void) cJSONUtils_SortObjectCaseSensitive(cJSON * const object) in cJSONUtils_SortObjectCaseSensitive()
[all …]