Home | History | Annotate | Download | only in qemu

Lines Matching refs:offset

78     int offset;
80 offset = fdt_path_offset(fdt, node_path);
81 if (offset < 0)
82 return offset;
84 return fdt_setprop(fdt, offset, property, val_array, size);
90 int offset;
92 offset = fdt_path_offset(fdt, node_path);
93 if (offset < 0)
94 return offset;
96 return fdt_setprop_cell(fdt, offset, property, val);
102 int offset;
104 offset = fdt_path_offset(fdt, node_path);
105 if (offset < 0)
106 return offset;
108 return fdt_setprop_string(fdt, offset, property, string);