Home
last modified time | relevance | path

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

/scripts/dtc/libfdt/
Dfdt_wip.c19 int proplen; in fdt_setprop_inplace_namelen_partial() local
22 &proplen); in fdt_setprop_inplace_namelen_partial()
24 return proplen; in fdt_setprop_inplace_namelen_partial()
26 if ((unsigned)proplen < (len + idx)) in fdt_setprop_inplace_namelen_partial()
37 int proplen; in fdt_setprop_inplace() local
39 propval = fdt_getprop(fdt, nodeoffset, name, &proplen); in fdt_setprop_inplace()
41 return proplen; in fdt_setprop_inplace()
43 if (proplen != len) in fdt_setprop_inplace()
Dfdt_rw.c205 int proplen; in fdt_add_property_() local
219 proplen = sizeof(**prop) + FDT_TAGALIGN(len); in fdt_add_property_()
221 err = fdt_splice_struct_(fdt, *prop, 0, proplen); in fdt_add_property_()
321 int len, proplen; in fdt_delprop() local
329 proplen = sizeof(*prop) + FDT_TAGALIGN(len); in fdt_delprop()
330 return fdt_splice_struct_(fdt, prop, proplen, 0); in fdt_delprop()
Dfdt_ro.c656 const void *propval, int proplen) in fdt_node_offset_by_prop_value() argument
673 if (val && (len == proplen) in fdt_node_offset_by_prop_value()
Dlibfdt.h983 const void *propval, int proplen);
/scripts/dtc/
Dflattree.c666 uint32_t proplen, stroff; in flat_read_property() local
670 proplen = flat_read_word(dtbuf); in flat_read_property()
675 if ((flags & FTF_VARALIGN) && (proplen >= 8)) in flat_read_property()
678 val = flat_read_data(dtbuf, proplen); in flat_read_property()