Lines Matching full:path
38 /* FDT_ERR_BADPATH: Function was passed a badly formatted path
40 * absolute path) */
459 * such as a full path.
494 * fdt_path_offset_namelen - find a tree node by its full path
496 * @path: full path of the node to locate
497 * @namelen: number of characters of path to consider
500 * characters of path as the path name.
505 int fdt_path_offset_namelen(const void *fdt, const char *path, int namelen);
509 * fdt_path_offset - find a tree node by its full path
511 * @path: full path of the node to locate
513 * fdt_path_offset() finds a node of a given path in the device tree.
514 * Each path component may omit the unit address portion, but the
515 * results of this are undefined if any such path component is
521 * structure block offset of the node with the requested path (>=0), on
523 * -FDT_ERR_BADPATH, given path does not begin with '/' or is invalid
531 int fdt_path_offset(const void *fdt, const char *path);
845 * fdt_get_alias - retrieve the path referenced by a given alias
859 * fdt_get_path - determine the full path of a node
861 * @nodeoffset: offset of the node whose path to find
862 * @buf: character buffer to contain the returned path (will be overwritten)
865 * fdt_get_path() computes the full path of the node at offset
866 * nodeoffset, and records that path in the buffer at buf.
873 * buf contains the absolute path of the node at
876 * -FDT_ERR_NOSPACE, the path of the given node is longer than (bufsize-1)
2015 * full path.