Lines Matching refs:newPath
43 void RenameFile( const wchar_t* currentPath, const wchar_t* newPath);
44 void RenameFile( const char* currentPath, const char* newPath);
45 Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath);
46 Result TryRenameFile( const char* currentPath, const char* newPath);
59 void RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
60 void RenameDirectory( const char* currentPath, const char* newPath);
61 Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
62 Result TryRenameDirectory( const char* currentPath, const char* newPath);
117 inline void FileSystemBase::RenameFile( const wchar_t* currentPath, const wchar_t* newPath) in RenameFile() argument
119 NN_UTIL_PANIC_IF_FAILED(m_pImpl->TryRenameFile(currentPath, newPath)); in RenameFile()
122 inline void FileSystemBase::RenameFile( const char* currentPath, const char* newPath) in RenameFile() argument
125 WPathBuffer wnewStr(newPath); in RenameFile()
129 inline Result FileSystemBase::TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() argument
131 return m_pImpl->TryRenameFile(currentPath, newPath); in TryRenameFile()
134 inline Result FileSystemBase::TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() argument
137 WPathBuffer wnewStr(newPath); in TryRenameFile()
207 inline void FileSystemBase::RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in RenameDirectory() argument
209 NN_UTIL_PANIC_IF_FAILED(m_pImpl->TryRenameDirectory(currentPath, newPath)); in RenameDirectory()
212 inline void FileSystemBase::RenameDirectory( const char* currentPath, const char* newPath) in RenameDirectory() argument
215 WPathBuffer wnewStr(newPath); in RenameDirectory()
219 …line Result FileSystemBase::TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameDirectory() argument
221 return m_pImpl->TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()
224 inline Result FileSystemBase::TryRenameDirectory( const char* currentPath, const char* newPath) in TryRenameDirectory() argument
227 WPathBuffer wnewStr(newPath); in TryRenameDirectory()