Lines Matching refs:newpath
504 int SysLink(const char *oldpath, const char *newpath)
517 if (newpath != NULL) {
518 ret = UserPathCopy(newpath, &newpathRet);
867 int SysRename(const char *oldpath, const char *newpath)
880 if (newpath != NULL) {
881 ret = UserPathCopy(newpath, &pathNewRet);
888 (newpath ? pathNewRet : NULL));
1870 int SysLinkat(int olddirfd, const char *oldpath, int newdirfd, const char *newpath, int flags)
1883 if (newpath != NULL) {
1884 ret = UserPathCopy(newpath, &newpathRet);
2032 int SysRenameat(int oldfd, const char *oldpath, int newdfd, const char *newpath)
2045 if (newpath != NULL) {
2046 ret = UserPathCopy(newpath, &pathNewRet);
2061 ret = do_rename(oldfd, (oldpath ? pathOldRet : NULL), newdfd, (newpath ? pathNewRet : NULL));