Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/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);
358 inline Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() function
360 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
362 inline Result TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() function
364 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
Dfs_FileSystemBase.h47 Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath);
48 Result TryRenameFile( const char* currentPath, const char* newPath);
156 NN_ERR_THROW_FATAL_ALL(m_pImpl->TryRenameFile(currentPath, newPath)); in RenameFile()
163 NN_ERR_THROW_FATAL_ALL(m_pImpl->TryRenameFile(wcurStr.GetBuffer(), wnewStr.GetBuffer())); in RenameFile()
166 inline Result FileSystemBase::TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() function
168 return m_pImpl->TryRenameFile(currentPath, newPath); in TryRenameFile()
171 inline Result FileSystemBase::TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() function
175 return m_pImpl->TryRenameFile(wcurStr.GetBuffer(), wnewStr.GetBuffer()); in TryRenameFile()
/CTR-SDK-4.2.5/include/nn/fs/CTR/MPCore/
Dfs_UserFileSystem.h72 static Result TryRenameFile(const wchar_t* currentPath, const wchar_t* newPath);