Lines Matching refs:root
341 evt.of_live_built.root = *rootp; in of_live_build()
352 void of_live_free(struct device_node *root) in of_live_free() argument
355 free(root); in of_live_free()
360 struct device_node *root; in of_live_create_empty() local
362 root = calloc(1, sizeof(struct device_node)); in of_live_create_empty()
363 if (!root) in of_live_create_empty()
365 root->name = strdup(""); in of_live_create_empty()
366 if (!root->name) { in of_live_create_empty()
367 free(root); in of_live_create_empty()
370 root->type = "<NULL>"; in of_live_create_empty()
371 root->full_name = ""; in of_live_create_empty()
372 *rootp = root; in of_live_create_empty()
447 int of_live_flatten(const struct device_node *root, struct abuf *buf) in of_live_flatten() argument
462 ret = flatten_node(buf, root); in of_live_flatten()