Lines Matching refs:pszDestPath
566 static oslFileError osl_psz_copyFile(const sal_Char* pszPath, const sal_Char* pszDestPath);
567 static oslFileError osl_psz_moveFile(const sal_Char* pszPath, const sal_Char* pszDestPath);
578 static oslFileError oslDoMoveFile(const sal_Char* pszPath, const sal_Char* pszDestPath);
674 static oslFileError oslDoMoveFile( const sal_Char* pszPath, const sal_Char* pszDestPath) in oslDoMoveFile() argument
678 tErr = osl_psz_moveFile(pszPath,pszDestPath); in oslDoMoveFile()
689 tErr=osl_psz_copyFile(pszPath,pszDestPath); in oslDoMoveFile()
694 tErrRemove=osl_psz_removeFile(pszDestPath); in oslDoMoveFile()
737 static oslFileError osl_psz_moveFile(const sal_Char* pszPath, const sal_Char* pszDestPath) in osl_psz_moveFile() argument
742 nRet = rename(pszPath,pszDestPath); in osl_psz_moveFile()
757 static oslFileError osl_psz_copyFile( const sal_Char* pszPath, const sal_Char* pszDestPath ) in osl_psz_copyFile() argument
792 nRet = stat(pszDestPath,&aFileStat); in osl_psz_copyFile()
814 tErr = oslDoCopy(pszPath,pszDestPath,nMode,nSourceSize,DestFileExists); in osl_psz_copyFile()
826 oslChangeFileModes(pszDestPath,nMode,nAcTime,nModTime,nUID,nGID); in osl_psz_copyFile()