Lines Matching refs:root
297 struct json_value *root; in json_parse() local
304 root = calloc(1, sizeof(*root)); in json_parse()
305 if (!root) in json_parse()
308 ret = json_parse_value(root); in json_parse()
310 free(root); in json_parse()
314 return root; in json_parse()
319 struct json_value *root; in json_parse_file() local
347 root = calloc(1, sizeof(*root)); in json_parse_file()
348 if (!root) in json_parse_file()
351 ret = json_parse_value(root); in json_parse_file()
353 json_free(root); in json_parse_file()
357 return root; in json_parse_file()