Home
last modified time | relevance | path

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

/third_party/cJSON/
DcJSON.h152 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_b…
153 …ithLengthOpts(const char *value, size_t buffer_length, const char **return_parse_end, cJSON_bool r…
DcJSON.c1080 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_b… in cJSON_ParseWithOpts() argument
1092 … return cJSON_ParseWithLengthOpts(value, buffer_length, return_parse_end, require_null_terminated); in cJSON_ParseWithOpts()
1096 …ithLengthOpts(const char *value, size_t buffer_length, const char **return_parse_end, cJSON_bool r… in cJSON_ParseWithLengthOpts() argument
1136 if (return_parse_end) in cJSON_ParseWithLengthOpts()
1138 *return_parse_end = (const char*)buffer_at_offset(&buffer); in cJSON_ParseWithLengthOpts()
1164 if (return_parse_end != NULL) in cJSON_ParseWithLengthOpts()
1166 *return_parse_end = (const char*)local_error.json + local_error.position; in cJSON_ParseWithLengthOpts()
DREADME.md281 …hreading scenarios, in that case it is better to use `cJSON_ParseWithOpts` with `return_parse_end`.
284 If you want more options, use `cJSON_ParseWithOpts(const char *value, const char **return_parse_end
285 `return_parse_end` returns a pointer to the end of the JSON in the input string or the position tha…
287 …ithLengthOpts(const char *value, size_t buffer_length, const char **return_parse_end, cJSON_bool r…
555 * `cJSON_GetErrorPtr` is never used (the `return_parse_end` parameter of `cJSON_ParseWithOpts` can …
DCHANGELOG.md163 * Set the global error pointer even if `return_parse_end` is passed to `cJSON_ParseWithOpts`, see […
/third_party/vulkan-loader/loader/
DcJSON.h147 …WithOpts(const VkAllocationCallbacks *pAllocator, const char *value, const char **return_parse_end,
DcJSON.c447 …WithOpts(const VkAllocationCallbacks *pAllocator, const char *value, const char **return_parse_end, in cJSON_ParseWithOpts() argument
470 if (return_parse_end) *return_parse_end = end; in cJSON_ParseWithOpts()