Lines Matching refs:path
21 * property) instead of a path (target-path property).
48 * @pathp: pointer which receives the path of the target (or NULL)
52 * done (through a phandle or a path)
62 const char *path = NULL;
70 /* no phandle, try path */
72 /* And then a path based lookup */
73 path = fdt_getprop(fdto, fragment, "target-path", &path_len);
74 if (path)
75 ret = fdt_path_offset(fdt, path);
83 * target-path property in a node that contains a
95 /* return pointer to path (if available) */
97 *pathp = path ? path : NULL;
350 * @path: Path to a node holding a phandle in the overlay
351 * @path_len: number of path characters to consider
370 const char *path, uint32_t path_len,
396 fixup_off = fdt_path_offset_namelen(fdto, path, path_len);
445 const char *path, *name, *fixup_end;
460 path = fixup_str;
465 path_len = sep - path;
484 path, path_len, name, name_len,
700 const char *path;
726 path = fdt_getprop_by_offset(fdto, prop, &name, &path_len);
727 if (!path)
731 if (path_len < 1 || memchr(path, '\0', path_len) != &path[path_len - 1])
735 e = path + path_len;
737 if (*path != '/')
741 s = strchr(path + 1, '/');
748 frag_name = path + 1;
749 frag_name_len = s - path - 1;
754 /* /<fragment-name>/__overlay__/<relative-subnode-path> */
787 /* if we have a target path use */