Lines Matching refs:ucp

120 json_parse_string(const unsigned char **ucp, const unsigned char *ue)  in json_parse_string()  argument
122 const unsigned char *uc = *ucp; in json_parse_string()
125 DPRINTF("Parse string: ", uc, *ucp); in json_parse_string()
158 *ucp = uc; in json_parse_string()
159 DPRINTF("Good string: ", uc, *ucp); in json_parse_string()
166 DPRINTF("Bad string: ", uc, *ucp); in json_parse_string()
167 *ucp = uc; in json_parse_string()
172 json_parse_array(const unsigned char **ucp, const unsigned char *ue, in json_parse_array() argument
175 const unsigned char *uc = *ucp; in json_parse_array()
177 DPRINTF("Parse array: ", uc, *ucp); in json_parse_array()
192 *ucp = uc + 1; in json_parse_array()
193 DPRINTF("Good array: ", uc, *ucp); in json_parse_array()
200 DPRINTF("Bad array: ", uc, *ucp); in json_parse_array()
201 *ucp = uc; in json_parse_array()
206 json_parse_object(const unsigned char **ucp, const unsigned char *ue, in json_parse_object() argument
209 const unsigned char *uc = *ucp; in json_parse_object()
210 DPRINTF("Parse object: ", uc, *ucp); in json_parse_object()
220 DPRINTF("not string", uc, *ucp); in json_parse_object()
223 DPRINTF("next field", uc, *ucp); in json_parse_object()
225 DPRINTF("not string", uc, *ucp); in json_parse_object()
232 DPRINTF("not colon", uc, *ucp); in json_parse_object()
236 DPRINTF("not json", uc, *ucp); in json_parse_object()
246 *ucp = uc; in json_parse_object()
247 DPRINTF("Good object: ", uc, *ucp); in json_parse_object()
250 *ucp = uc - 1; in json_parse_object()
251 DPRINTF("not more", uc, *ucp); in json_parse_object()
256 DPRINTF("Bad object: ", uc, *ucp); in json_parse_object()
257 *ucp = uc; in json_parse_object()
262 json_parse_number(const unsigned char **ucp, const unsigned char *ue) in json_parse_number() argument
264 const unsigned char *uc = *ucp; in json_parse_number()
267 DPRINTF("Parse number: ", uc, *ucp); in json_parse_number()
304 DPRINTF("Bad number: ", uc, *ucp); in json_parse_number()
306 DPRINTF("Good number: ", uc, *ucp); in json_parse_number()
307 *ucp = uc; in json_parse_number()
312 json_parse_const(const unsigned char **ucp, const unsigned char *ue, in json_parse_const() argument
315 const unsigned char *uc = *ucp; in json_parse_const()
317 DPRINTF("Parse const: ", uc, *ucp); in json_parse_const()
323 DPRINTF("Bad const: ", uc, *ucp); in json_parse_const()
324 *ucp = uc; in json_parse_const()
329 json_parse(const unsigned char **ucp, const unsigned char *ue, in json_parse() argument
336 uc = json_skip_space(*ucp, ue); in json_parse()
349 DPRINTF("Parse general: ", uc, *ucp); in json_parse()
385 *ucp = uc; in json_parse()
386 DPRINTF("End general: ", uc, *ucp); in json_parse()