Lines Matching refs:node
122 static int list_properties(const void *blob, int node) in list_properties() argument
128 prop = fdt_first_property_offset(blob, node); in list_properties()
150 static int list_subnodes(const void *blob, int node) in list_subnodes() argument
159 tag = fdt_next_tag(blob, node, &nextoffset); in list_subnodes()
162 pathp = fdt_get_name(blob, node, NULL); in list_subnodes()
191 node = nextoffset; in list_subnodes()
207 int node, const char *property) in show_data_for_item() argument
214 err = list_properties(blob, node); in show_data_for_item()
218 err = list_subnodes(blob, node); in show_data_for_item()
223 value = fdt_getprop(blob, node, property, &len); in show_data_for_item()
255 int i, node; in do_fdtget() local
262 node = fdt_path_offset(blob, arg[i]); in do_fdtget()
263 if (node < 0) { in do_fdtget()
268 report_error(arg[i], node); in do_fdtget()
274 if (show_data_for_item(blob, disp, node, prop)) in do_fdtget()