Lines Matching refs:pszDestFileName
789 static oslFileError oslDoCopy(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName, …
791 …ic int oslDoCopyLink(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName);
792 … oslDoCopyFile(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName, size_t nSour…
1944 static oslFileError oslDoCopy(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName, m… in oslDoCopy() argument
1958 strncpy(pszTmpDestFile, pszDestFileName, size_tmp_dest_buff - 1); in oslDoCopy()
1967 nRet=rename(pszDestFileName,pszTmpDestFile); in oslDoCopy()
1974 nRet = oslDoCopyFile(pszSourceFileName,pszDestFileName,nSourceSize, nMode); in oslDoCopy()
1979 nRet = oslDoCopyLink(pszSourceFileName,pszDestFileName); in oslDoCopy()
1989 unlink(pszDestFileName); in oslDoCopy()
1990 rename(pszTmpDestFile,pszDestFileName); in oslDoCopy()
2052 static int oslDoCopyLink(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName) in oslDoCopyLink() argument
2072 nRet = symlink(pszLinkContent,pszDestFileName); in oslDoCopyLink()
2087 static int oslDoCopyFile(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName, size_t… in oslDoCopyFile() argument
2102 DestFileFD=open(pszDestFileName, O_WRONLY | O_CREAT | O_BINARY, mode); in oslDoCopyFile()