HomeSort by relevance Sort by last modified time
    Searched full:dest_file_path (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
move_operation.h 48 // with a target of |dest_file_path|.
54 const base::FilePath& dest_file_path,
move_operation.cc 88 const base::FilePath& dest_file_path,
102 dest_file_path,
copy_operation.cc 155 base::FilePath dest_file_path; member in struct:drive::file_system::CopyOperation::CopyParams
186 const base::FilePath& dest_file_path,
193 params.dest_file_path = dest_file_path;
203 metadata_, src_file_path, dest_file_path,
222 base::FilePath new_title = params.dest_file_path.BaseName();
copy_operation.h 56 // with a target of |dest_file_path|.
62 const base::FilePath& dest_file_path,
move_operation_unittest.cc 183 // Test the case where the parent of |dest_file_path| is a existing file,
  /external/chromium_org/chrome/browser/chromeos/drive/
fileapi_worker.h 90 // Copies a file from |src_file_path| to |dest_file_path|.
93 const base::FilePath& dest_file_path,
98 // Moves a file from |src_file_path| to |dest_file_path|.
101 const base::FilePath& dest_file_path,
108 // System, to |dest_file_path|.
110 const base::FilePath& dest_file_path,
file_system_interface.h 206 // Copies |src_file_path| to |dest_file_path| on the file system.
208 // |dest_file_path| is expected to be of the same type of |src_file_path|
209 // (i.e. if |src_file_path| is a file, |dest_file_path| will be created as
219 // - |dest_file_path| must not exist.
220 // - The parent of |dest_file_path| must already exist.
223 // of |dest_file_path| need to be present in the in-memory representation
228 const base::FilePath& dest_file_path,
232 // Moves |src_file_path| to |dest_file_path| on the file system.
234 // |dest_file_path| is expected to be of the same type of |src_file_path|
235 // (i.e. if |src_file_path| is a file, |dest_file_path| will be created a
    [all...]
fileapi_worker.cc 224 const base::FilePath& dest_file_path,
229 file_system->Copy(src_file_path, dest_file_path, preserve_last_modified,
234 const base::FilePath& dest_file_path,
239 file_system->Move(src_file_path, dest_file_path, preserve_last_modified,
244 const base::FilePath& dest_file_path,
249 src_foreign_file_path, dest_file_path,
dummy_file_system.h 28 const base::FilePath& dest_file_path,
32 const base::FilePath& dest_file_path,
fake_file_system.h 58 const base::FilePath& dest_file_path,
62 const base::FilePath& dest_file_path,
fake_file_system.cc 64 const base::FilePath& dest_file_path,
71 const base::FilePath& dest_file_path,
file_system.h 94 const base::FilePath& dest_file_path,
98 const base::FilePath& dest_file_path,
file_system.cc 385 const base::FilePath& dest_file_path,
391 src_file_path, dest_file_path, preserve_last_modified, callback);
395 const base::FilePath& dest_file_path,
401 src_file_path, dest_file_path, preserve_last_modified, callback);
    [all...]
  /external/chromium/base/
file_util_proxy.cc 21 const FilePath& dest_file_path) {
26 // The parent of the |dest_file_path| does not exist.
27 if (!file_util::DirectoryExists(dest_file_path.DirName()))
31 if (src_file_path.IsParent(dest_file_path))
34 // Now it is ok to return if the |dest_file_path| does not exist.
35 if (!file_util::PathExists(dest_file_path))
39 // |dest_file_path| exists and is a file.
41 bool dest_is_directory = file_util::DirectoryExists(dest_file_path);
46 // |dest_file_path| exists and is a directory.
51 if (src_file_path.value() == dest_file_path.value()
    [all...]
file_util_proxy.h 116 // Copies a file or a directory from |src_file_path| to |dest_file_path|
126 const FilePath& dest_file_path,
129 // Moves a file or a directory from src_file_path to dest_file_path.
134 const FilePath& dest_file_path,
  /external/chromium_org/webkit/browser/fileapi/
local_file_util.cc 207 base::FilePath dest_file_path;
208 error = GetLocalFilePath(context, dest_url, &dest_file_path);
213 src_file_path, dest_file_path, option,
224 base::FilePath dest_file_path;
226 GetLocalFilePath(context, dest_url, &dest_file_path);
230 src_file_path, dest_file_path, FileSystemOperation::OPTION_NONE,
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
native_media_file_util.cc 448 base::FilePath dest_file_path;
449 error = GetLocalFilePath(context, dest_url, &dest_file_path);
453 error = fileapi::NativeFileUtil::GetFileInfo(dest_file_path, &file_info);
459 if (!media_path_filter_->Match(dest_file_path))
463 src_file_path, dest_file_path, option,
475 base::FilePath dest_file_path;
477 GetFilteredLocalFilePath(context, dest_url, &dest_file_path);
481 src_file_path, dest_file_path,
  /external/chromium_org/chrome/browser/sessions/
session_service_unittest.cc 856 base::FilePath dest_file_path(path_);
857 dest_file_path = dest_file_path.AppendASCII("Current Session");
862 ASSERT_TRUE(base::CopyFile(v1_file_path, dest_file_path));
    [all...]

Completed in 729 milliseconds