Lines Matching refs:newPath

94 void RenameFile( const wchar_t* currentPath, const wchar_t* newPath);
108 void RenameFile( const char* currentPath, const char* newPath);
120 Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath);
135 Result TryRenameFile( const char* currentPath, const char* newPath);
318 void RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
332 void RenameDirectory( const char* currentPath, const char* newPath);
344 Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
359 Result TryRenameDirectory( const char* currentPath, const char* newPath);
380 inline void RenameFile( const wchar_t* currentPath, const wchar_t* newPath) in RenameFile() argument
382 detail::GetGlobalFileSystemBase().RenameFile(currentPath, newPath); in RenameFile()
384 inline void RenameFile( const char* currentPath, const char* newPath) in RenameFile() argument
386 detail::GetGlobalFileSystemBase().RenameFile(currentPath, newPath); in RenameFile()
388 inline Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() argument
390 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
392 inline Result TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() argument
394 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
464 inline void RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in RenameDirectory() argument
466 detail::GetGlobalFileSystemBase().RenameDirectory(currentPath, newPath); in RenameDirectory()
468 inline void RenameDirectory( const char* currentPath, const char* newPath) in RenameDirectory() argument
470 detail::GetGlobalFileSystemBase().RenameDirectory(currentPath, newPath); in RenameDirectory()
472 inline Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameDirectory() argument
474 return detail::GetGlobalFileSystemBase().TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()
476 inline Result TryRenameDirectory( const char* currentPath, const char* newPath) in TryRenameDirectory() argument
478 return detail::GetGlobalFileSystemBase().TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()