Lines Matching refs:newPath

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
131 WPathBuffer wnewStr(newPath); 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
143 WPathBuffer wnewStr(newPath); 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
243 WPathBuffer wnewStr(newPath); in RenameDirectory()
247 …line Result FileSystemBase::TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) 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
255 WPathBuffer wnewStr(newPath); in TryRenameDirectory()