Lines Matching refs:currentPath
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
124 WPathBuffer wcurStr(currentPath); 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
136 WPathBuffer wcurStr(currentPath); 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
214 WPathBuffer wcurStr(currentPath); in RenameDirectory()
219 inline Result FileSystemBase::TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPat… 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
226 WPathBuffer wcurStr(currentPath); in TryRenameDirectory()