Lines Matching refs:currentPath

44     void RenameFile( const wchar_t* currentPath, const wchar_t* newPath);
45 void RenameFile( const char* currentPath, const char* newPath);
46 Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath);
47 Result TryRenameFile( const char* currentPath, const char* newPath);
64 void RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
65 void RenameDirectory( const char* currentPath, const char* newPath);
66 Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
67 Result TryRenameDirectory( const char* currentPath, const char* newPath);
123 inline void FileSystemBase::RenameFile( const wchar_t* currentPath, const wchar_t* newPath) in RenameFile() argument
125 NN_ERR_THROW_FATAL_ALL(m_pImpl->TryRenameFile(currentPath, newPath)); in RenameFile()
128 inline void FileSystemBase::RenameFile( const char* currentPath, const char* newPath) in RenameFile() argument
130 WPathBuffer wcurStr(currentPath); in RenameFile()
135 inline Result FileSystemBase::TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() argument
137 return m_pImpl->TryRenameFile(currentPath, newPath); in TryRenameFile()
140 inline Result FileSystemBase::TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() argument
142 WPathBuffer wcurStr(currentPath); in TryRenameFile()
235 inline void FileSystemBase::RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in RenameDirectory() argument
237 NN_ERR_THROW_FATAL_ALL(m_pImpl->TryRenameDirectory(currentPath, newPath)); in RenameDirectory()
240 inline void FileSystemBase::RenameDirectory( const char* currentPath, const char* newPath) in RenameDirectory() argument
242 WPathBuffer wcurStr(currentPath); in RenameDirectory()
247 inline Result FileSystemBase::TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPat… in TryRenameDirectory() argument
249 return m_pImpl->TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()
252 inline Result FileSystemBase::TryRenameDirectory( const char* currentPath, const char* newPath) in TryRenameDirectory() argument
254 WPathBuffer wcurStr(currentPath); in TryRenameDirectory()