Home
last modified time | relevance | path

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

/scripts/dtc/
Ddtc-parser.y36 struct property *proplist; member
71 %type <proplist> proplist
249 '{' proplist subnodes '}' ';'
255 proplist:
260 | proplist propdef
Dlivetree.c88 struct node *build_node(struct property *proplist, struct node *children, in build_node() argument
96 new->proplist = reverse_properties(proplist); in build_node()
156 while (new_node->proplist) { in merge_nodes()
158 new_prop = new_node->proplist; in merge_nodes()
159 new_node->proplist = new_prop->next; in merge_nodes()
272 p = &node->proplist; in add_property()
281 struct property *prop = node->proplist; in delete_property_by_name()
724 node->proplist = tbl[0]; in sort_properties()
Ddtc.h153 struct property *proplist; member
180 for ((p) = (n)->proplist; (p); (p) = (p)->next)
202 struct node *build_node(struct property *proplist, struct node *children,
Dchecks.c550 for (pp = &node->proplist; *pp; pp = &((*pp)->next)) in check_name_properties()