Home
last modified time | relevance | path

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

/external/iperf3/src/
Dcjson.h117 #define CJSON_PUBLIC(type) type __stdcall macro
119 #define CJSON_PUBLIC(type) __declspec(dllexport) type __stdcall macro
121 #define CJSON_PUBLIC(type) __declspec(dllimport) type __stdcall macro
125 #define CJSON_PUBLIC(type) __attribute__((visibility("default"))) type macro
127 #define CJSON_PUBLIC(type) type macro
138 CJSON_PUBLIC(const char*) cJSON_Version(void);
141 CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks* hooks);
145 CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value);
147 CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item);
149 CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item);
[all …]
Dcjson.c66 CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void) in cJSON_GetErrorPtr()
76 CJSON_PUBLIC(const char*) cJSON_Version(void) in cJSON_Version()
137 CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks* hooks) in cJSON_InitHooks()
181 CJSON_PUBLIC(void) cJSON_Delete(cJSON *item) in cJSON_Delete()
307 CJSON_PUBLIC(double) cJSON_SetNumberHelper(cJSON *object, double number) in cJSON_SetNumberHelper()
940 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_b… in cJSON_ParseWithOpts()
1022 CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value) in cJSON_Parse()
1092 CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item) in cJSON_Print()
1097 CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item) in cJSON_PrintUnformatted()
1102 CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt) in cJSON_PrintBuffered()
[all …]