Home
last modified time | relevance | path

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

/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/fs/
Dfs_FileSystem.h108 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()
Dfs_FileSystemBase.h46 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-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/fs/CTR/MPCore/
Dfs_UserFileSystem.h67 static Result TryRenameFile(const wchar_t* currentPath, const wchar_t* newPath);