Searched refs:proplen (Results 1 – 5 of 5) sorted by relevance
/scripts/dtc/libfdt/ |
D | fdt_wip.c | 19 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()
|
D | fdt_rw.c | 205 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()
|
D | fdt_ro.c | 656 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()
|
D | libfdt.h | 983 const void *propval, int proplen);
|
/scripts/dtc/ |
D | flattree.c | 666 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()
|