Home | History | Annotate | Download | only in cpu

Lines Matching defs:blob

18 	void *blob = state->state_fdt;
23 used = fdt_off_dt_strings(blob) + fdt_size_dt_strings(blob);
24 size = fdt_totalsize(blob);
34 ret = fdt_open_into(blob, buf, size);
40 os_free(blob);
95 * @blob: FDT containing state
99 struct sandbox_state_io *io, const void *blob)
111 while (blob) {
112 node = fdt_node_offset_by_compatible(blob, node, io->compat);
115 debug(" - read node '%s'\n", fdt_get_name(blob, node, NULL));
116 ret = io->read(blob, node);
144 const void *blob;
158 blob = state->state_fdt;
161 ret = sandbox_read_state_nodes(state, io, blob);
191 void *blob;
204 /* The blob location can change when the size increases */
205 blob = state->state_fdt;
206 node = fdt_node_offset_by_compatible(blob, -1, io->compat);
208 node = fdt_add_subnode(blob, 0, io->name);
215 if (fdt_setprop_string(blob, node, "compatible", io->compat)) {
225 ret = io->write(blob, node);
310 void *blob;
322 blob = state->state_fdt;
323 ret = fdt_setprop(blob, node, prop_name, data, size);
326 __func__, prop_name, fdt_get_name(blob, node, NULL),