Searched refs:newPath (Results 1 – 6 of 6) sorted by relevance
| /CTR-SDK-0.14.4/include/nn/fs/ |
| D | fs_FileSystem.h | 90 void RenameFile( const wchar_t* currentPath, const wchar_t* newPath); 104 void RenameFile( const char* currentPath, const char* newPath); 114 Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath); 127 Result TryRenameFile( const char* currentPath, const char* newPath); 294 void RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath); 308 void RenameDirectory( const char* currentPath, const char* newPath); 318 Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath); 331 Result TryRenameDirectory( const char* currentPath, const char* newPath); 352 inline void RenameFile( const wchar_t* currentPath, const wchar_t* newPath) in RenameFile() argument 354 detail::GetGlobalFileSystemBase().RenameFile(currentPath, newPath); in RenameFile() [all …]
|
| D | fs_FileSystemBase.h | 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() [all …]
|
| /CTR-SDK-0.14.4/include/nn/fs/CTR/MPCore/ |
| D | fs_UserFileSystem.h | 67 static Result TryRenameFile(const wchar_t* currentPath, const wchar_t* newPath); 72 static Result TryRenameDirectory(const wchar_t* currentPath, const wchar_t* newPath); 79 …urrentArchiveHandle, const Path& currentPath, ArchiveHandle newArchiveHandle, const Path& newPath); 83 …urrentArchiveHandle, const Path& currentPath, ArchiveHandle newArchiveHandle, const Path& newPath);
|
| D | fs_UserArchive.h | 58 virtual Result RenameFile(const Path& currentPath, const Path& newPath) = 0; 63 virtual Result RenameDirectory(const Path& currentPath, const Path& newPath) = 0;
|
| /CTR-SDK-0.14.4/include/nn/fslow/ |
| D | fslow_ArchiveMapFileSystem.h | 314 Result RenameFile(nn::fs::Transaction transaction, Path oldPath, Path newPath) in RenameFile() argument 326 ArchiveName name = GetSelf().GetArchiveName(newPath); in RenameFile() 343 …File(transaction, GetSelf().GetPathString(Move(oldPath)), GetSelf().GetPathString(Move(newPath)))); in RenameFile() 348 Result RenameDirectory(nn::fs::Transaction transaction, Path oldPath, Path newPath) in RenameDirectory() argument 360 ArchiveName name = GetSelf().GetArchiveName(newPath); in RenameDirectory() 377 …tory(transaction, GetSelf().GetPathString(Move(oldPath)), GetSelf().GetPathString(Move(newPath)))); in RenameDirectory()
|
| D | fslow_IArchive.h | 69 virtual Result RenameFile(nn::fs::Transaction transaction, Path oldPath, Path newPath) = 0; 70 virtual Result RenameDirectory(nn::fs::Transaction transaction, Path oldPath, Path newPath) = 0;
|