Home | History | Annotate | Download | only in libfdt

Lines Matching refs:nodeoffset

58 int fdt_setprop_inplace_namelen_partial(void *fdt, int nodeoffset,
66 propval = fdt_getprop_namelen_w(fdt, nodeoffset, name, namelen,
78 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
84 propval = fdt_getprop(fdt, nodeoffset, name, &proplen);
91 return fdt_setprop_inplace_namelen_partial(fdt, nodeoffset, name,
104 int fdt_nop_property(void *fdt, int nodeoffset, const char *name)
109 prop = fdt_get_property_w(fdt, nodeoffset, name, &len);
128 int fdt_nop_node(void *fdt, int nodeoffset)
132 endoffset = _fdt_node_end_offset(fdt, nodeoffset);
136 _fdt_nop_region(fdt_offset_ptr_w(fdt, nodeoffset, 0),
137 endoffset - nodeoffset);