Home
last modified time | relevance | path

Searched refs:jsmn_parse (Results 1 – 4 of 4) sorted by relevance

/external/jsmn/
Djsmn_test.c52 r = jsmn_parse(&p, js, strlen(js), t, 10); in test_empty()
59 r = jsmn_parse(&p, js, strlen(js), t, 10); in test_empty()
66 r = jsmn_parse(&p, js, strlen(js), t, 10); in test_empty()
74 r = jsmn_parse(&p, js, strlen(js), t, 10); in test_empty()
91 r = jsmn_parse(&p, js, strlen(js), tokens, 10); in test_simple()
103 r = jsmn_parse(&p, js, strlen(js), tokens, 10); in test_simple()
108 r = jsmn_parse(&p, js, strlen(js), tokens, 10); in test_simple()
122 r = jsmn_parse(&p, js, strlen(js), tok, 10); in test_primitive()
130 r = jsmn_parse(&p, js, strlen(js), tok, 10); in test_primitive()
138 r = jsmn_parse(&p, js, strlen(js), tok, 10); in test_primitive()
[all …]
Djsmn.h66 jsmnerr_t jsmn_parse(jsmn_parser *parser, const char *js, size_t len,
DREADME.md70 Later, you can use jsmn_parse(&parser) function to process JSON string with the parser.
76 …locate more tokens and call jsmn_parse once more. If you read json data from the stream, you can p…
Djsmn.c153 jsmnerr_t jsmn_parse(jsmn_parser *parser, const char *js, size_t len, in jsmn_parse() function