Lines Matching refs:node

217 struct node {
221 struct node *children;
223 struct node *parent;
224 struct node *next_sibling;
269 struct node *build_node(struct property *proplist, struct node *children,
271 struct node *build_node_delete(struct srcpos *srcpos);
272 struct node *name_node(struct node *node, char *name);
273 struct node *omit_node_if_unused(struct node *node);
274 struct node *reference_node(struct node *node);
275 struct node *chain_node(struct node *first, struct node *list);
276 struct node *merge_nodes(struct node *old_node, struct node *new_node);
277 struct node *add_orphan_node(struct node *old_node, struct node *new_node, char *ref);
279 void add_property(struct node *node, struct property *prop);
280 void delete_property_by_name(struct node *node, char *name);
282 void add_child(struct node *parent, struct node *child);
283 void delete_node_by_name(struct node *parent, char *name);
284 void delete_node(struct node *node);
285 void append_to_property(struct node *node,
289 const char *get_unitname(struct node *node);
290 struct property *get_property(struct node *node, const char *propname);
293 struct property *get_property_by_label(struct node *tree, const char *label,
294 struct node **node);
295 struct marker *get_marker_label(struct node *tree, const char *label,
296 struct node **node, struct property **prop);
297 struct node *get_subnode(struct node *node, const char *nodename);
298 struct node *get_node_by_path(struct node *tree, const char *path);
299 struct node *get_node_by_label(struct node *tree, const char *label);
300 struct node *get_node_by_phandle(struct node *tree, cell_t phandle);
301 struct node *get_node_by_ref(struct node *tree, const char *ref);
302 cell_t get_node_phandle(struct node *root, struct node *node);
304 uint32_t guess_boot_cpuid(struct node *tree);
327 struct node *dt; /* the device tree */
337 struct node *tree, uint32_t boot_cpuid_phys);