Lines Matching refs:parent
101 child->parent = new; in build_node()
196 new_child->parent = NULL; in merge_nodes()
299 void add_child(struct node *parent, struct node *child) in add_child() argument
304 child->parent = parent; in add_child()
306 p = &parent->children; in add_child()
313 void delete_node_by_name(struct node *parent, char *name) in delete_node_by_name() argument
315 struct node *node = parent->children; in delete_node_by_name()
819 static struct node *build_and_name_child_node(struct node *parent, const char *name) in build_and_name_child_node() argument
825 add_child(parent, node); in build_and_name_child_node()
1004 for (wn = node; wn; wn = wn->parent) in add_local_fixup_entry()
1011 for (wn = node, i = depth - 1; wn; wn = wn->parent, i--) in add_local_fixup_entry()