Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/include/nn/fs/
Dfs_FileSystem.h314 Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
329 Result TryRenameDirectory( const char* currentPath, const char* newPath);
442 inline Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameDirectory() function
444 return detail::GetGlobalFileSystemBase().TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()
446 inline Result TryRenameDirectory( const char* currentPath, const char* newPath) in TryRenameDirectory() function
448 return detail::GetGlobalFileSystemBase().TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()
Dfs_FileSystemBase.h67 Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
68 Result TryRenameDirectory( const char* currentPath, const char* newPath);
268 NN_ERR_THROW_FATAL_ALL(m_pImpl->TryRenameDirectory(currentPath, newPath)); in RenameDirectory()
275 NN_ERR_THROW_FATAL_ALL(m_pImpl->TryRenameDirectory(wcurStr.GetBuffer(), wnewStr.GetBuffer())); in RenameDirectory()
278 inline Result FileSystemBase::TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPat… in TryRenameDirectory() function
280 return m_pImpl->TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()
283 inline Result FileSystemBase::TryRenameDirectory( const char* currentPath, const char* newPath) in TryRenameDirectory() function
287 return m_pImpl->TryRenameDirectory(wcurStr.GetBuffer(), wnewStr.GetBuffer()); in TryRenameDirectory()
/CTR-SDK-4.2.5/include/nn/fs/CTR/MPCore/
Dfs_UserFileSystem.h77 static Result TryRenameDirectory(const wchar_t* currentPath, const wchar_t* newPath);