Lines Matching refs:currentPath
90 void RenameFile( const wchar_t* currentPath, const wchar_t* newPath);
104 void RenameFile( const char* currentPath, const char* newPath);
114 Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath);
127 Result TryRenameFile( const char* currentPath, const char* newPath);
294 void RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
308 void RenameDirectory( const char* currentPath, const char* newPath);
318 Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
331 Result TryRenameDirectory( const char* currentPath, const char* newPath);
352 inline void RenameFile( const wchar_t* currentPath, const wchar_t* newPath) in RenameFile() argument
354 detail::GetGlobalFileSystemBase().RenameFile(currentPath, newPath); in RenameFile()
356 inline void RenameFile( const char* currentPath, const char* newPath) in RenameFile() argument
358 detail::GetGlobalFileSystemBase().RenameFile(currentPath, newPath); in RenameFile()
360 inline Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() argument
362 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
364 inline Result TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() argument
366 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
436 inline void RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in RenameDirectory() argument
438 detail::GetGlobalFileSystemBase().RenameDirectory(currentPath, newPath); in RenameDirectory()
440 inline void RenameDirectory( const char* currentPath, const char* newPath) in RenameDirectory() argument
442 detail::GetGlobalFileSystemBase().RenameDirectory(currentPath, newPath); in RenameDirectory()
444 inline Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameDirectory() argument
446 return detail::GetGlobalFileSystemBase().TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()
448 inline Result TryRenameDirectory( const char* currentPath, const char* newPath) in TryRenameDirectory() argument
450 return detail::GetGlobalFileSystemBase().TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()