Lines Matching refs:node

152 struct node {  struct
156 struct node *children; argument
158 struct node *parent; argument
159 struct node *next_sibling; argument
202 struct node *build_node(struct property *proplist, struct node *children);
203 struct node *build_node_delete(void);
204 struct node *name_node(struct node *node, char *name);
205 struct node *omit_node_if_unused(struct node *node);
206 struct node *reference_node(struct node *node);
207 struct node *chain_node(struct node *first, struct node *list);
208 struct node *merge_nodes(struct node *old_node, struct node *new_node);
209 struct node *add_orphan_node(struct node *old_node, struct node *new_node, char *ref);
211 void add_property(struct node *node, struct property *prop);
212 void delete_property_by_name(struct node *node, char *name);
214 void add_child(struct node *parent, struct node *child);
215 void delete_node_by_name(struct node *parent, char *name);
216 void delete_node(struct node *node);
217 void append_to_property(struct node *node,
220 const char *get_unitname(struct node *node);
221 struct property *get_property(struct node *node, const char *propname);
224 struct property *get_property_by_label(struct node *tree, const char *label,
225 struct node **node);
226 struct marker *get_marker_label(struct node *tree, const char *label,
227 struct node **node, struct property **prop);
228 struct node *get_subnode(struct node *node, const char *nodename);
229 struct node *get_node_by_path(struct node *tree, const char *path);
230 struct node *get_node_by_label(struct node *tree, const char *label);
231 struct node *get_node_by_phandle(struct node *tree, cell_t phandle);
232 struct node *get_node_by_ref(struct node *tree, const char *ref);
233 cell_t get_node_phandle(struct node *root, struct node *node);
235 uint32_t guess_boot_cpuid(struct node *tree);
257 struct node *dt; /* the device tree */
267 struct node *tree, uint32_t boot_cpuid_phys);