Lines Matching refs:node
142 struct node { struct
145 struct node *children; argument
147 struct node *parent; argument
148 struct node *next_sibling; argument
174 struct node *build_node(struct property *proplist, struct node *children); argument
175 struct node *name_node(struct node *node, char *name);
176 struct node *chain_node(struct node *first, struct node *list);
177 struct node *merge_nodes(struct node *old_node, struct node *new_node);
179 void add_property(struct node *node, struct property *prop);
180 void add_child(struct node *parent, struct node *child);
182 const char *get_unitname(struct node *node);
183 struct property *get_property(struct node *node, const char *propname);
185 struct property *get_property_by_label(struct node *tree, const char *label,
186 struct node **node);
187 struct marker *get_marker_label(struct node *tree, const char *label,
188 struct node **node, struct property **prop);
189 struct node *get_subnode(struct node *node, const char *nodename);
190 struct node *get_node_by_path(struct node *tree, const char *path);
191 struct node *get_node_by_label(struct node *tree, const char *label);
192 struct node *get_node_by_phandle(struct node *tree, cell_t phandle);
193 struct node *get_node_by_ref(struct node *tree, const char *ref);
194 cell_t get_node_phandle(struct node *root, struct node *node);
196 uint32_t guess_boot_cpuid(struct node *tree);
217 struct node *dt; /* the device tree */
222 struct node *tree, uint32_t boot_cpuid_phys);