Home
last modified time | relevance | path

Searched refs:fdt_next_tag (Results 1 – 5 of 5) sorted by relevance

/f-stack/freebsd/contrib/libfdt/
H A Dfdt.c94 uint32_t fdt_next_tag(const void *fdt, int startoffset, int *nextoffset) in fdt_next_tag() function
150 || (fdt_next_tag(fdt, offset, &offset) != FDT_BEGIN_NODE)) in fdt_check_node_offset_()
159 || (fdt_next_tag(fdt, offset, &offset) != FDT_PROP)) in fdt_check_prop_offset_()
176 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_next_node()
H A Dfdt_rw.c366 fdt_next_tag(fdt, parentoffset, &nextoffset); /* skip the BEGIN_NODE */ in fdt_add_subnode_namelen()
369 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_add_subnode_namelen()
447 while (fdt_next_tag(fdt, struct_size, &struct_size) != FDT_END) in fdt_open_into()
H A Dfdt_sw.c281 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) { in fdt_finish()
H A Dlibfdt.h154 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);
H A Dfdt_ro.c141 tag = fdt_next_tag(fdt, offset, &nextoffset); in nextprop_()