Home
last modified time | relevance | path

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

/CTR-SDK-1.0.0/CTR_SDK/include/nn/fs/
Dfs_FileSystem.h308 Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
323 Result TryRenameDirectory( const char* currentPath, const char* newPath);
436 inline Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameDirectory() function
438 return detail::GetGlobalFileSystemBase().TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()
440 inline Result TryRenameDirectory( const char* currentPath, const char* newPath) in TryRenameDirectory() function
442 return detail::GetGlobalFileSystemBase().TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()
Dfs_FileSystemBase.h66 Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
67 Result TryRenameDirectory( const char* currentPath, const char* newPath);
237 NN_ERR_THROW_FATAL_ALL(m_pImpl->TryRenameDirectory(currentPath, newPath)); in RenameDirectory()
244 NN_ERR_THROW_FATAL_ALL(m_pImpl->TryRenameDirectory(wcurStr.GetBuffer(), wnewStr.GetBuffer())); in RenameDirectory()
247 inline Result FileSystemBase::TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPat… in TryRenameDirectory() function
249 return m_pImpl->TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()
252 inline Result FileSystemBase::TryRenameDirectory( const char* currentPath, const char* newPath) in TryRenameDirectory() function
256 return m_pImpl->TryRenameDirectory(wcurStr.GetBuffer(), wnewStr.GetBuffer()); in TryRenameDirectory()
/CTR-SDK-1.0.0/CTR_SDK/include/nn/fs/CTR/MPCore/
Dfs_UserFileSystem.h72 static Result TryRenameDirectory(const wchar_t* currentPath, const wchar_t* newPath);