Searched refs:buffer_length (Results 1 – 2 of 2) sorted by relevance
| /iperf/src/ |
| H A D | cjson.h | 154 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length); 158 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLengthOpts(const char *value, size_t buffer_length, const char…
|
| H A D | cjson.c | 1086 size_t buffer_length; in cJSON_ParseWithOpts() local 1094 buffer_length = strlen(value) + sizeof(""); in cJSON_ParseWithOpts() 1096 … return cJSON_ParseWithLengthOpts(value, buffer_length, return_parse_end, require_null_terminated); in cJSON_ParseWithOpts() 1100 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLengthOpts(const char *value, size_t buffer_length, const char… in cJSON_ParseWithLengthOpts() argument 1109 if (value == NULL || 0 == buffer_length) in cJSON_ParseWithLengthOpts() 1115 buffer.length = buffer_length; in cJSON_ParseWithLengthOpts() 1185 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length) in cJSON_ParseWithLength() argument 1187 return cJSON_ParseWithLengthOpts(value, buffer_length, 0, 0); in cJSON_ParseWithLength()
|