Home
last modified time | relevance | path

Searched refs:MoveFile (Results 1 – 7 of 7) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/base/
Dfileutils.h182 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path) = 0;
188 return MoveFile(old_path, new_path); in MoveFileOrFolder()
338 static bool MoveFile(const Pathname &old_path, const Pathname &new_path) { in MoveFile() function
339 return EnsureDefaultFilesystem()->MoveFile(old_path, new_path); in MoveFile()
Dwin32filesystem.cc247 bool Win32Filesystem::MoveFile(const Pathname &old_path, in MoveFile() function in talk_base::Win32Filesystem
255 return ::MoveFile(ToUtf16(old_path.pathname()).c_str(), in MoveFile()
267 if (::MoveFile(ToUtf16(old_path.pathname()).c_str(), in MoveFolder()
Dwin32filesystem.h63 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path);
Dunixfilesystem.h63 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path);
Dunixfilesystem.cc220 bool UnixFilesystem::MoveFile(const Pathname &old_path, in MoveFile() function in talk_base::UnixFilesystem
/external/chromium/chrome/common/
Dservice_process_util_unittest.cc516 TEST_F(ServiceProcessStateFileManipulationTest, MoveFile) { in TEST_F() argument
/external/openssl/apps/
Dapps.c2806 if (MoveFile(tfrom,tto)) goto ok; in WIN32_rename()
2810 if (DeleteFile(tto) && MoveFile(tfrom,tto)) in WIN32_rename()