Searched refs:fdt_next_tag (Results 1 – 6 of 6) sorted by relevance
/scripts/dtc/libfdt/ |
D | fdt.c | 126 uint32_t fdt_next_tag(const void *fdt, int startoffset, int *nextoffset) in fdt_next_tag() function 182 || (fdt_next_tag(fdt, offset, &offset) != FDT_BEGIN_NODE)) in fdt_check_node_offset_() 191 || (fdt_next_tag(fdt, offset, &offset) != FDT_PROP)) in fdt_check_prop_offset_() 208 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_next_node()
|
D | fdt_rw.c | 337 fdt_next_tag(fdt, parentoffset, &nextoffset); /* skip the BEGIN_NODE */ in fdt_add_subnode_namelen() 340 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_add_subnode_namelen() 418 while (fdt_next_tag(fdt, struct_size, &struct_size) != FDT_END) in fdt_open_into()
|
D | fdt_ro.c | 192 tag = fdt_next_tag(fdt, offset, &nextoffset); in nextprop_() 860 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_check_full()
|
D | fdt_sw.c | 353 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) { in fdt_finish()
|
D | libfdt.h | 118 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);
|
/scripts/dtc/ |
D | fdtget.c | 145 tag = fdt_next_tag(blob, node, &nextoffset); in list_subnodes()
|