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

  /external/chromium/third_party/libjingle/source/talk/base/
fileutils.h 197 virtual bool CopyFile(const Pathname &old_path, const Pathname &new_path) = 0;
204 return CopyFile(old_path, new_path);
346 static bool CopyFile(const Pathname &old_path, const Pathname &new_path) {
347 return EnsureDefaultFilesystem()->CopyFile(old_path, new_path);
unixfilesystem.cc 231 if (!CopyFile(old_path, new_path))
265 bool UnixFilesystem::CopyFile(const Pathname &old_path,
win32filesystem.cc 307 bool Win32Filesystem::CopyFile(const Pathname &old_path,
309 return ::CopyFile(ToUtf16(old_path.pathname()).c_str(),
  /external/chromium/base/
file_util_posix.cc 301 if (!CopyFile(current, target_path)) {
850 bool CopyFile(const FilePath& from_path, const FilePath& to_path) {
file_util_win.cc 233 bool CopyFile(const FilePath& from_path, const FilePath& to_path) {
242 return (::CopyFile(from_path.value().c_str(), to_path.value().c_str(),
    [all...]

Completed in 77 milliseconds