Lines Matching refs:pszDestFileName
582 static oslFileError oslDoCopy(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName, …
584 …ic int oslDoCopyLink(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName);
585 … oslDoCopyFile(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName, size_t nSour…
854 static oslFileError oslDoCopy(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName, m… in oslDoCopy() argument
868 strncpy(pszTmpDestFile, pszDestFileName, size_tmp_dest_buff - 1); in oslDoCopy()
877 nRet=rename(pszDestFileName,pszTmpDestFile); in oslDoCopy()
884 nRet = oslDoCopyFile(pszSourceFileName,pszDestFileName,nSourceSize, nMode); in oslDoCopy()
889 nRet = oslDoCopyLink(pszSourceFileName,pszDestFileName); in oslDoCopy()
899 unlink(pszDestFileName); in oslDoCopy()
900 rename(pszTmpDestFile,pszDestFileName); in oslDoCopy()
962 static int oslDoCopyLink(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName) in oslDoCopyLink() argument
982 nRet = symlink(pszLinkContent,pszDestFileName); in oslDoCopyLink()
997 static int oslDoCopyFile(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName, size_t… in oslDoCopyFile() argument
1010 DestFileFD=open(pszDestFileName, O_WRONLY | O_CREAT, mode); in oslDoCopyFile()