Lines Matching full:property

140  * leaves (property files).
355 const char *property, const void *val, int size) in qemu_fdt_setprop() argument
359 r = fdt_setprop(fdt, findnode_nofail(fdt, node_path), property, val, size); in qemu_fdt_setprop()
362 property, fdt_strerror(r)); in qemu_fdt_setprop()
370 const char *property, uint32_t val) in qemu_fdt_setprop_cell() argument
374 r = fdt_setprop_cell(fdt, findnode_nofail(fdt, node_path), property, val); in qemu_fdt_setprop_cell()
377 node_path, property, val, fdt_strerror(r)); in qemu_fdt_setprop_cell()
385 const char *property, uint64_t val) in qemu_fdt_setprop_u64() argument
388 return qemu_fdt_setprop(fdt, node_path, property, &val, sizeof(val)); in qemu_fdt_setprop_u64()
392 const char *property, const char *string) in qemu_fdt_setprop_string() argument
396 r = fdt_setprop_string(fdt, findnode_nofail(fdt, node_path), property, string); in qemu_fdt_setprop_string()
399 node_path, property, string, fdt_strerror(r)); in qemu_fdt_setprop_string()
432 const char *property, int *lenp, Error **errp) in qemu_fdt_getprop() argument
440 r = fdt_getprop(fdt, findnode_nofail(fdt, node_path), property, lenp); in qemu_fdt_getprop()
443 node_path, property, fdt_strerror(*lenp)); in qemu_fdt_getprop()
449 const char *property, int *lenp, Error **errp) in qemu_fdt_getprop_cell() argument
457 p = qemu_fdt_getprop(fdt, node_path, property, lenp, errp); in qemu_fdt_getprop_cell()
462 __func__, node_path, property); in qemu_fdt_getprop_cell()
484 const char *property, in qemu_fdt_setprop_phandle() argument
488 return qemu_fdt_setprop_cell(fdt, node_path, property, phandle); in qemu_fdt_setprop_phandle()
599 const char *property, in qemu_fdt_setprop_sized_cells_from_array() argument
629 ret = qemu_fdt_setprop(fdt, node_path, property, propcells, in qemu_fdt_setprop_sized_cells_from_array()