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

/haiku-fatelf/headers/libs/libfdt/
H A Dlibfdt.h262 * @parentoffset: structure block offset of a node
271 int fdt_subnode_offset_namelen(const void *fdt, int parentoffset,
276 * @parentoffset: structure block offset of a node
280 * offset parentoffset with the given name. name may include a unit
289 * -FDT_ERR_BADOFFSET, if parentoffset did not point to an FDT_BEGIN_NODE tag
296 int fdt_subnode_offset(const void *fdt, int parentoffset, const char *name);
1163 * @parentoffset: structure block offset of a node
1172 int fdt_add_subnode_namelen(void *fdt, int parentoffset,
1178 * @parentoffset: structure block offset of a node
1182 * structure block offset parentoffset, wit
[all...]
/haiku-fatelf/src/libs/libfdt/
H A Dfdt_rw.c307 int fdt_add_subnode_namelen(void *fdt, int parentoffset, argument
319 offset = fdt_subnode_offset_namelen(fdt, parentoffset, name, namelen);
326 fdt_next_tag(fdt, parentoffset, &nextoffset); /* skip the BEGIN_NODE */
348 int fdt_add_subnode(void *fdt, int parentoffset, const char *name) argument
350 return fdt_add_subnode_namelen(fdt, parentoffset, name, strlen(name));
H A Dfdt_ro.c151 int fdt_subnode_offset(const void *fdt, int parentoffset, argument
154 return fdt_subnode_offset_namelen(fdt, parentoffset, name, strlen(name));

Completed in 37 milliseconds