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);
63 void RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
64 void RenameDirectory( const char* currentPath, const char* newPath);
65 Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
66 Result TryRenameDirectory( const char* currentPath, const char* newPath);
121 inline void FileSystemBase::RenameFile( const wchar_t* currentPath, const wchar_t* newPath) in RenameFile() argument
123 NN_UTIL_PANIC_IF_FAILED(m_pImpl->TryRenameFile(currentPath, newPath)); in RenameFile()
126 inline void FileSystemBase::RenameFile( const char* currentPath, const char* newPath) in RenameFile() argument
129 WPathBuffer wnewStr(newPath); in RenameFile()
133 inline Result FileSystemBase::TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() argument
135 return m_pImpl->TryRenameFile(currentPath, newPath); in TryRenameFile()
138 inline Result FileSystemBase::TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() argument
141 WPathBuffer wnewStr(newPath); in TryRenameFile()
233 inline void FileSystemBase::RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in RenameDirectory() argument
235 NN_UTIL_PANIC_IF_FAILED(m_pImpl->TryRenameDirectory(currentPath, newPath)); in RenameDirectory()
238 inline void FileSystemBase::RenameDirectory( const char* currentPath, const char* newPath) in RenameDirectory() argument
241 WPathBuffer wnewStr(newPath); in RenameDirectory()
245 …line Result FileSystemBase::TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameDirectory() argument
247 return m_pImpl->TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()
250 inline Result FileSystemBase::TryRenameDirectory( const char* currentPath, const char* newPath) in TryRenameDirectory() argument
253 WPathBuffer wnewStr(newPath); in TryRenameDirectory()