Lines Matching refs:currentPath

85 void RenameFile( const wchar_t* currentPath, const wchar_t* newPath);
96 void RenameFile( const char* currentPath, const char* newPath);
108 Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath);
123 Result TryRenameFile( const char* currentPath, const char* newPath);
285 void RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
296 void RenameDirectory( const char* currentPath, const char* newPath);
308 Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
323 Result TryRenameDirectory( const char* currentPath, const char* newPath);
344 inline void RenameFile( const wchar_t* currentPath, const wchar_t* newPath) in RenameFile() argument
346 detail::GetGlobalFileSystemBase().RenameFile(currentPath, newPath); in RenameFile()
348 inline void RenameFile( const char* currentPath, const char* newPath) in RenameFile() argument
350 detail::GetGlobalFileSystemBase().RenameFile(currentPath, newPath); in RenameFile()
352 inline Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() argument
354 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
356 inline Result TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() argument
358 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
428 inline void RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in RenameDirectory() argument
430 detail::GetGlobalFileSystemBase().RenameDirectory(currentPath, newPath); in RenameDirectory()
432 inline void RenameDirectory( const char* currentPath, const char* newPath) in RenameDirectory() argument
434 detail::GetGlobalFileSystemBase().RenameDirectory(currentPath, newPath); in RenameDirectory()
436 inline Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameDirectory() argument
438 return detail::GetGlobalFileSystemBase().TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()
440 inline Result TryRenameDirectory( const char* currentPath, const char* newPath) in TryRenameDirectory() argument
442 return detail::GetGlobalFileSystemBase().TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()