Home
last modified time | relevance | path

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

/external/iperf3/src/
Dcjson.h69 #define CJSON_PUBLIC(type) type CJSON_STDCALL macro
71 #define CJSON_PUBLIC(type) __declspec(dllexport) type CJSON_STDCALL
73 #define CJSON_PUBLIC(type) __declspec(dllimport) type CJSON_STDCALL
80 #define CJSON_PUBLIC(type) __attribute__((visibility("default"))) type
82 #define CJSON_PUBLIC(type) type
146 CJSON_PUBLIC(const char*) cJSON_Version(void);
149 CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks* hooks);
153 CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value);
154 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length);
157 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_b…
[all …]
Dcjson.c101 CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void) in cJSON_GetErrorPtr()
106 CJSON_PUBLIC(char *) cJSON_GetStringValue(cJSON *item) in cJSON_GetStringValue()
116 CJSON_PUBLIC(double) cJSON_GetNumberValue(cJSON *item) in cJSON_GetNumberValue()
131 CJSON_PUBLIC(const char*) cJSON_Version(void) in cJSON_Version()
216 CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks* hooks) in cJSON_InitHooks()
260 CJSON_PUBLIC(void) cJSON_Delete(cJSON *item) in cJSON_Delete()
389 CJSON_PUBLIC(double) cJSON_SetNumberHelper(cJSON *object, double number) in cJSON_SetNumberHelper()
407 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 …]