Lines Matching refs:newPath

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);
291 void RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
302 void RenameDirectory( const char* currentPath, const char* newPath);
314 Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
329 Result TryRenameDirectory( const char* currentPath, const char* newPath);
350 inline void RenameFile( const wchar_t* currentPath, const wchar_t* newPath) in RenameFile() argument
352 detail::GetGlobalFileSystemBase().RenameFile(currentPath, newPath); in RenameFile()
354 inline void RenameFile( const char* currentPath, const char* newPath) in RenameFile() argument
356 detail::GetGlobalFileSystemBase().RenameFile(currentPath, newPath); in RenameFile()
358 inline Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() argument
360 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
362 inline Result TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() argument
364 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
434 inline void RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in RenameDirectory() argument
436 detail::GetGlobalFileSystemBase().RenameDirectory(currentPath, newPath); in RenameDirectory()
438 inline void RenameDirectory( const char* currentPath, const char* newPath) in RenameDirectory() argument
440 detail::GetGlobalFileSystemBase().RenameDirectory(currentPath, newPath); in RenameDirectory()
442 inline Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameDirectory() argument
444 return detail::GetGlobalFileSystemBase().TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()
446 inline Result TryRenameDirectory( const char* currentPath, const char* newPath) in TryRenameDirectory() argument
448 return detail::GetGlobalFileSystemBase().TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()