HomeSort by relevance Sort by last modified time
    Searched defs:MoveFile (Results 1 - 3 of 3) sorted by null

  /external/chromium/third_party/libjingle/source/talk/base/
fileutils.h 182 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path) = 0;
188 return MoveFile(old_path, new_path);
338 static bool MoveFile(const Pathname &old_path, const Pathname &new_path) {
339 return EnsureDefaultFilesystem()->MoveFile(old_path, new_path);
unixfilesystem.cc 220 bool UnixFilesystem::MoveFile(const Pathname &old_path,
win32filesystem.cc 247 bool Win32Filesystem::MoveFile(const Pathname &old_path,
255 return ::MoveFile(ToUtf16(old_path.pathname()).c_str(),
267 if (::MoveFile(ToUtf16(old_path.pathname()).c_str(),

Completed in 36 milliseconds