Lines Matching defs:upath
1702 do_realpath(const char *upath)
1720 if (mksh_abspath(upath)) {
1721 /* upath is an absolute pathname */
1722 strdupx(ipath, upath, ATEMP);
1724 } else if (mksh_drvltr(upath)) {
1725 /* upath is a drive-relative pathname */
1726 if (getdrvwd(&ldest, ord(*upath)))
1729 strpathx(ipath, ldest, upath + 2, 0);
1732 /* upath is a relative pathname, prepend cwd */
1735 strpathx(ipath, tp, upath, 1);
1739 /* ipath and upath are in memory at the same time -> unchecked */