Home
last modified time | relevance | path

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

/CTR-SDK-0.13.2/include/nn/fs/
Dfs_FileSystemBase.h45 Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath);
46 Result TryRenameFile( const char* currentPath, const char* newPath);
119 NN_UTIL_PANIC_IF_FAILED(m_pImpl->TryRenameFile(currentPath, newPath)); in RenameFile()
126 NN_UTIL_PANIC_IF_FAILED(m_pImpl->TryRenameFile(wcurStr.GetBuffer(), wnewStr.GetBuffer())); in RenameFile()
129 inline Result FileSystemBase::TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() function
131 return m_pImpl->TryRenameFile(currentPath, newPath); in TryRenameFile()
134 inline Result FileSystemBase::TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() function
138 return m_pImpl->TryRenameFile(wcurStr.GetBuffer(), wnewStr.GetBuffer()); in TryRenameFile()
Dfs_FileSystem.h96 Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath);
108 Result TryRenameFile( const char* currentPath, const char* newPath);
269 inline Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() function
271 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
273 inline Result TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() function
275 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
/CTR-SDK-0.13.2/include/nn/fs/CTR/MPCore/
Dfs_UserFileSystem.h66 static Result TryRenameFile(const wchar_t* currentPath, const wchar_t* newPath);