Lines Matching refs:node
108 static int list_properties(const void *blob, int node) in list_properties() argument
114 prop = fdt_first_property_offset(blob, node); in list_properties()
136 static int list_subnodes(const void *blob, int node) in list_subnodes() argument
145 tag = fdt_next_tag(blob, node, &nextoffset); in list_subnodes()
148 pathp = fdt_get_name(blob, node, NULL); in list_subnodes()
177 node = nextoffset; in list_subnodes()
193 int node, const char *property) in show_data_for_item() argument
200 err = list_properties(blob, node); in show_data_for_item()
204 err = list_subnodes(blob, node); in show_data_for_item()
209 value = fdt_getprop(blob, node, property, &len); in show_data_for_item()
241 int i, node; in do_fdtget() local
248 node = fdt_path_offset(blob, arg[i]); in do_fdtget()
249 if (node < 0) { in do_fdtget()
254 report_error(arg[i], node); in do_fdtget()
260 if (show_data_for_item(blob, disp, node, prop)) in do_fdtget()