Lines Matching refs:node
22 static inline ATTR_PURE const struct json_tree_node *json_tree_get_child(const struct json_tree_node *node)
24 return node->value.child;
26 static inline ATTR_PURE const char *json_tree_get_value_str(const struct json_tree_node *node)
28 return node->value.str;
50 /* Return the root node. */
53 /* Find a node with the specified key from an OBJECT node */
55 json_tree_find_key(const struct json_tree_node *node, const char *key);
56 /* Find an object node (from an array), which contains the specified key=value
59 json_tree_find_child_with(const struct json_tree_node *node,