Lines Matching refs:pszDestFileName
574 static oslFileError oslDoCopy(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName, …
576 …ic int oslDoCopyLink(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName);
577 … oslDoCopyFile(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName, size_t nSour…
842 static oslFileError oslDoCopy(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName, m… in oslDoCopy() argument
856 strncpy(pszTmpDestFile, pszDestFileName, size_tmp_dest_buff - 1); in oslDoCopy()
865 nRet=rename(pszDestFileName,pszTmpDestFile); in oslDoCopy()
872 nRet = oslDoCopyFile(pszSourceFileName,pszDestFileName,nSourceSize, nMode); in oslDoCopy()
877 nRet = oslDoCopyLink(pszSourceFileName,pszDestFileName); in oslDoCopy()
887 unlink(pszDestFileName); in oslDoCopy()
888 rename(pszTmpDestFile,pszDestFileName); in oslDoCopy()
950 static int oslDoCopyLink(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName) in oslDoCopyLink() argument
970 nRet = symlink(pszLinkContent,pszDestFileName); in oslDoCopyLink()
985 static int oslDoCopyFile(const sal_Char* pszSourceFileName, const sal_Char* pszDestFileName, size_t… in oslDoCopyFile() argument
998 DestFileFD=open(pszDestFileName, O_WRONLY | O_CREAT, mode); in oslDoCopyFile()