Lines Matching refs:currentPath

45     void RenameFile( const wchar_t* currentPath, const wchar_t* newPath);
46 void RenameFile( const char* currentPath, const char* newPath);
47 Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath);
48 Result TryRenameFile( const char* currentPath, const char* newPath);
65 void RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
66 void RenameDirectory( const char* currentPath, const char* newPath);
67 Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
68 Result TryRenameDirectory( const char* currentPath, const char* newPath);
154 inline void FileSystemBase::RenameFile( const wchar_t* currentPath, const wchar_t* newPath) in RenameFile() argument
156 NN_ERR_THROW_FATAL_ALL(m_pImpl->TryRenameFile(currentPath, newPath)); in RenameFile()
159 inline void FileSystemBase::RenameFile( const char* currentPath, const char* newPath) in RenameFile() argument
161 WPathBuffer wcurStr(currentPath); in RenameFile()
166 inline Result FileSystemBase::TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() argument
168 return m_pImpl->TryRenameFile(currentPath, newPath); in TryRenameFile()
171 inline Result FileSystemBase::TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() argument
173 WPathBuffer wcurStr(currentPath); in TryRenameFile()
266 inline void FileSystemBase::RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in RenameDirectory() argument
268 NN_ERR_THROW_FATAL_ALL(m_pImpl->TryRenameDirectory(currentPath, newPath)); in RenameDirectory()
271 inline void FileSystemBase::RenameDirectory( const char* currentPath, const char* newPath) in RenameDirectory() argument
273 WPathBuffer wcurStr(currentPath); in RenameDirectory()
278 inline Result FileSystemBase::TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPat… in TryRenameDirectory() argument
280 return m_pImpl->TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()
283 inline Result FileSystemBase::TryRenameDirectory( const char* currentPath, const char* newPath) in TryRenameDirectory() argument
285 WPathBuffer wcurStr(currentPath); in TryRenameDirectory()