Searched refs:TryRenameFile (Results 1 – 3 of 3) sorted by relevance
| /CTR-SDK-1.0.0/CTR_SDK/include/nn/fs/ |
| D | fs_FileSystem.h | 108 Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath); 123 Result TryRenameFile( const char* currentPath, const char* newPath); 352 inline Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() function 354 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile() 356 inline Result TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() function 358 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
|
| D | fs_FileSystemBase.h | 46 Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath); 47 Result TryRenameFile( const char* currentPath, const char* newPath); 125 NN_ERR_THROW_FATAL_ALL(m_pImpl->TryRenameFile(currentPath, newPath)); in RenameFile() 132 NN_ERR_THROW_FATAL_ALL(m_pImpl->TryRenameFile(wcurStr.GetBuffer(), wnewStr.GetBuffer())); in RenameFile() 135 inline Result FileSystemBase::TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() function 137 return m_pImpl->TryRenameFile(currentPath, newPath); in TryRenameFile() 140 inline Result FileSystemBase::TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() function 144 return m_pImpl->TryRenameFile(wcurStr.GetBuffer(), wnewStr.GetBuffer()); in TryRenameFile()
|
| /CTR-SDK-1.0.0/CTR_SDK/include/nn/fs/CTR/MPCore/ |
| D | fs_UserFileSystem.h | 67 static Result TryRenameFile(const wchar_t* currentPath, const wchar_t* newPath);
|