Home | History | Annotate | Download | only in utils

Lines Matching refs:child

195 	if (json_check_tree_state(token->child) < 0 ||
262 token->child = json_alloc_token(&tokens);
263 if (!token->child)
265 curr_token = token->child;
287 if (curr_token->child->state == JSON_EMPTY &&
288 !curr_token->child->child &&
289 !curr_token->child->sibling) {
290 /* Remove pending child token since the
292 json_free(curr_token->child);
293 curr_token->child = NULL;
483 json_free(json->child);
498 for (token = json->child; token; token = token->sibling) {
567 json_print_token(token->child, depth + 1, buf, buflen);