Home
last modified time | relevance | path

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

/third_party/cJSON/
DBUILD.gn18 defines = [ "CJSON_NESTING_LIMIT=(128)" ]
45 defines = [ "CJSON_NESTING_LIMIT=(128)" ]
DcJSON.h136 #ifndef CJSON_NESTING_LIMIT
137 #define CJSON_NESTING_LIMIT 1000 macro
DcJSON.c1451 if (input_buffer->depth >= CJSON_NESTING_LIMIT) in parse_array()
1611 if (input_buffer->depth >= CJSON_NESTING_LIMIT) in parse_object()
DCHANGELOG.md265 * Prevent a stack overflow by specifying a maximum nesting depth `CJSON_NESTING_LIMIT`
DREADME.md566 …lt in a stack overflow. To prevent this cJSON limits the depth to `CJSON_NESTING_LIMIT` which is 1…
/third_party/cJSON/tests/
Dmisc_tests.c210 char deep_json[CJSON_NESTING_LIMIT + 1]; in cjson_should_not_parse_to_deeply_nested_jsons()