Searched refs:fdt_next_tag (Results 1 – 6 of 6) sorted by relevance
/scripts/dtc/libfdt/ |
D | fdt.c | 94 uint32_t fdt_next_tag(const void *fdt, int startoffset, int *nextoffset) in fdt_next_tag() function 147 || (fdt_next_tag(fdt, offset, &offset) != FDT_BEGIN_NODE)) in _fdt_check_node_offset() 156 || (fdt_next_tag(fdt, offset, &offset) != FDT_PROP)) in _fdt_check_prop_offset() 173 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_next_node()
|
D | fdt_rw.c | 355 fdt_next_tag(fdt, parentoffset, &nextoffset); /* skip the BEGIN_NODE */ in fdt_add_subnode_namelen() 358 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_add_subnode_namelen() 436 while (fdt_next_tag(fdt, struct_size, &struct_size) != FDT_END) in fdt_open_into()
|
D | fdt_sw.c | 269 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) { in fdt_finish()
|
D | libfdt.h | 141 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);
|
D | fdt_ro.c | 114 tag = fdt_next_tag(fdt, offset, &nextoffset); in _nextprop()
|
/scripts/dtc/ |
D | fdtget.c | 159 tag = fdt_next_tag(blob, node, &nextoffset); in list_subnodes()
|