Lines Matching refs:path
37 /* FDT_ERR_BADPATH: Function was passed a badly formatted path
39 * absolute path) */
452 * such as a full path.
485 * fdt_path_offset_namelen - find a tree node by its full path
487 * @path: full path of the node to locate
488 * @namelen: number of characters of path to consider
491 * characters of path as the path name.
494 int fdt_path_offset_namelen(const void *fdt, const char *path, int namelen);
498 * fdt_path_offset - find a tree node by its full path
500 * @path: full path of the node to locate
502 * fdt_path_offset() finds a node of a given path in the device tree.
503 * Each path component may omit the unit address portion, but the
504 * results of this are undefined if any such path component is
510 * structure block offset of the node with the requested path (>=0), on
512 * -FDT_ERR_BADPATH, given path does not begin with '/' or is invalid
520 int fdt_path_offset(const void *fdt, const char *path);
826 * fdt_get_alias - retrieve the path referenced by a given alias
840 * fdt_get_path - determine the full path of a node
842 * @nodeoffset: offset of the node whose path to find
843 * @buf: character buffer to contain the returned path (will be overwritten)
846 * fdt_get_path() computes the full path of the node at offset
847 * nodeoffset, and records that path in the buffer at buf.
854 * buf contains the absolute path of the node at
857 * -FDT_ERR_NOSPACE, the path of the given node is longer than (bufsize-1)
1976 * full path.