Home
last modified time | relevance | path

Searched refs:TryRenameFile (Results 1 – 3 of 3) sorted by relevance

/CTR-SDK-0.14.4/include/nn/fs/
Dfs_FileSystem.h114 Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath);
127 Result TryRenameFile( const char* currentPath, const char* newPath);
360 inline Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() function
362 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
364 inline Result TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() function
366 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
Dfs_FileSystemBase.h45 Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath);
46 Result TryRenameFile( const char* currentPath, const char* newPath);
123 NN_UTIL_PANIC_IF_FAILED(m_pImpl->TryRenameFile(currentPath, newPath)); in RenameFile()
130 NN_UTIL_PANIC_IF_FAILED(m_pImpl->TryRenameFile(wcurStr.GetBuffer(), wnewStr.GetBuffer())); in RenameFile()
133 inline Result FileSystemBase::TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() function
135 return m_pImpl->TryRenameFile(currentPath, newPath); in TryRenameFile()
138 inline Result FileSystemBase::TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() function
142 return m_pImpl->TryRenameFile(wcurStr.GetBuffer(), wnewStr.GetBuffer()); in TryRenameFile()
/CTR-SDK-0.14.4/include/nn/fs/CTR/MPCore/
Dfs_UserFileSystem.h67 static Result TryRenameFile(const wchar_t* currentPath, const wchar_t* newPath);