Lines Matching defs:tree
31 static void fill_fullpaths(struct node *tree, const char *prefix)
36 tree->fullpath = join_path(prefix, tree->name);
38 unit = strchr(tree->name, '@');
40 tree->basenamelen = unit - tree->name;
42 tree->basenamelen = strlen(tree->name);
44 for_each_child(tree, child)
45 fill_fullpaths(child, tree->fullpath);
79 "\t\tdts - device tree source text\n"
80 "\t\tdtb - device tree blob\n"
81 "\t\tfs - /proc/device-tree style directory",
84 "\t\tdts - device tree source text\n"
85 "\t\tdtb - device tree blob\n"
87 "\t\tyaml - device tree encoded as YAML\n"
97 "\n\tTry to produce output even if the input tree has errors",