Lines Matching refs:path
28 int auto_path; /* automatically create all path components */
141 * Create paths as needed for all components of a path
143 * Any components of the path that do not exist are created. Errors are
152 const char *path = in_path;
157 while (*path == '/')
158 path++;
160 for (sep = path; *sep; path = sep + 1, offset = node) {
162 sep = strchr(path, '/');
164 sep = path + strlen(path);
166 node = fdt_subnode_offset_namelen(blob, offset, path,
167 sep - path);
169 node = fdt_add_subnode_namelen(blob, offset, path,
170 sep - path);
173 report_error(path, sep - path, node);
271 "\t-p\t\tAutomatically create nodes as needed for the node path\n"