Searched refs:parentoffset (Results 1 - 3 of 3) sorted by relevance

/gem5/ext/libfdt/
H A Dlibfdt.h246 * @parentoffset: structure block offset of a node
255 int fdt_subnode_offset_namelen(const void *fdt, int parentoffset,
260 * @parentoffset: structure block offset of a node
264 * offset parentoffset with the given name. name may include a unit
273 * -FDT_ERR_BADOFFSET, if parentoffset did not point to an FDT_BEGIN_NODE tag
280 int fdt_subnode_offset(const void *fdt, int parentoffset, const char *name);
1390 * @parentoffset: structure block offset of a node
1399 int fdt_add_subnode_namelen(void *fdt, int parentoffset,
1405 * @parentoffset: structure block offset of a node
1409 * structure block offset parentoffset, wit
[all...]
H A Dfdt_rw.c313 int fdt_add_subnode_namelen(void *fdt, int parentoffset, argument
325 offset = fdt_subnode_offset_namelen(fdt, parentoffset, name, namelen);
332 fdt_next_tag(fdt, parentoffset, &nextoffset); /* skip the BEGIN_NODE */
354 int fdt_add_subnode(void *fdt, int parentoffset, const char *name) argument
356 return fdt_add_subnode_namelen(fdt, parentoffset, name, strlen(name));
H A Dfdt_ro.c130 int fdt_subnode_offset(const void *fdt, int parentoffset, argument
133 return fdt_subnode_offset_namelen(fdt, parentoffset, name, strlen(name));

Completed in 13 milliseconds