Lines Matching refs:newPath
76 void RenameFile( const wchar_t* currentPath, const wchar_t* newPath);
86 void RenameFile( const char* currentPath, const char* newPath);
96 Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath);
108 Result TryRenameFile( const char* currentPath, const char* newPath);
210 void RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
220 void RenameDirectory( const char* currentPath, const char* newPath);
230 Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath);
242 Result TryRenameDirectory( const char* currentPath, const char* newPath);
261 inline void RenameFile( const wchar_t* currentPath, const wchar_t* newPath) in RenameFile() argument
263 detail::GetGlobalFileSystemBase().RenameFile(currentPath, newPath); in RenameFile()
265 inline void RenameFile( const char* currentPath, const char* newPath) in RenameFile() argument
267 detail::GetGlobalFileSystemBase().RenameFile(currentPath, newPath); in RenameFile()
269 inline Result TryRenameFile( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameFile() argument
271 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
273 inline Result TryRenameFile( const char* currentPath, const char* newPath) in TryRenameFile() argument
275 return detail::GetGlobalFileSystemBase().TryRenameFile(currentPath, newPath); in TryRenameFile()
328 inline void RenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in RenameDirectory() argument
330 detail::GetGlobalFileSystemBase().RenameDirectory(currentPath, newPath); in RenameDirectory()
332 inline void RenameDirectory( const char* currentPath, const char* newPath) in RenameDirectory() argument
334 detail::GetGlobalFileSystemBase().RenameDirectory(currentPath, newPath); in RenameDirectory()
336 inline Result TryRenameDirectory( const wchar_t* currentPath, const wchar_t* newPath) in TryRenameDirectory() argument
338 return detail::GetGlobalFileSystemBase().TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()
340 inline Result TryRenameDirectory( const char* currentPath, const char* newPath) in TryRenameDirectory() argument
342 return detail::GetGlobalFileSystemBase().TryRenameDirectory(currentPath, newPath); in TryRenameDirectory()