HomeSort by relevance Sort by last modified time
    Searched refs:src_file_path (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/webkit/browser/fileapi/
local_file_util.cc 195 base::FilePath src_file_path; local
196 PlatformFileError error = GetLocalFilePath(context, src_url, &src_file_path);
205 return NativeFileUtil::CopyOrMoveFile(src_file_path, dest_file_path, copy);
210 const base::FilePath& src_file_path,
212 if (src_file_path.empty())
220 return NativeFileUtil::CopyOrMoveFile(src_file_path, dest_file_path, true);
async_file_util_adapter.h 87 const base::FilePath& src_file_path,
async_file_util.h 246 // - PLATFORM_FILE_ERROR_NOT_FOUND if |src_file_path|
255 const base::FilePath& src_file_path,
file_system_file_util.h 153 const base::FilePath& src_file_path,
local_file_util.h 78 const base::FilePath& src_file_path,
async_file_util_adapter.cc 284 const base::FilePath& src_file_path,
292 base::Owned(context_ptr), src_file_path, dest_url),
  /external/chromium_org/chrome/browser/chromeos/drive/
dummy_file_system.h 31 virtual void Copy(const base::FilePath& src_file_path,
34 virtual void Move(const base::FilePath& src_file_path,
fileapi_worker.h 90 // Copies a file from |src_file_path| to |dest_file_path|.
92 void Copy(const base::FilePath& src_file_path,
97 // Moves a file from |src_file_path| to |dest_file_path|.
99 void Move(const base::FilePath& src_file_path,
fileapi_worker.cc 223 void Copy(const base::FilePath& src_file_path,
228 file_system->Copy(src_file_path, dest_file_path,
232 void Move(const base::FilePath& src_file_path,
237 file_system->Move(src_file_path, dest_file_path,
async_file_util.h 77 const base::FilePath& src_file_path,
fake_file_system.h 65 virtual void Copy(const base::FilePath& src_file_path,
68 virtual void Move(const base::FilePath& src_file_path,
file_system_interface.h 216 // Copies |src_file_path| to |dest_file_path| on the file system.
217 // |src_file_path| can be a hosted document (see limitations below).
218 // |dest_file_path| is expected to be of the same type of |src_file_path|
219 // (i.e. if |src_file_path| is a file, |dest_file_path| will be created as
224 // - |src_file_path| cannot be a regular file (i.e. non-hosted document)
229 // The file entries represented by |src_file_path| and the parent directory
234 virtual void Copy(const base::FilePath& src_file_path,
238 // Moves |src_file_path| to |dest_file_path| on the file system.
239 // |src_file_path| can be a file (regular or hosted document) or a directory.
240 // |dest_file_path| is expected to be of the same type of |src_file_path|
    [all...]
file_system.h 97 virtual void Copy(const base::FilePath& src_file_path,
100 virtual void Move(const base::FilePath& src_file_path,
async_file_util.cc 323 const base::FilePath& src_file_path,
337 src_file_path, dest_path,
fake_file_system.cc 77 void FakeFileSystem::Copy(const base::FilePath& src_file_path,
83 void FakeFileSystem::Move(const base::FilePath& src_file_path,
file_system.cc 353 void FileSystem::Copy(const base::FilePath& src_file_path,
358 copy_operation_->Copy(src_file_path, dest_file_path, callback);
361 void FileSystem::Move(const base::FilePath& src_file_path,
366 move_operation_->Move(src_file_path, dest_file_path, callback);
    [all...]
  /external/chromium/base/
file_util_proxy.cc 20 const FilePath& src_file_path,
23 if (!file_util::PathExists(src_file_path))
31 if (src_file_path.IsParent(dest_file_path))
38 // |src_file_path| exists and is a directory.
40 bool src_is_directory = file_util::DirectoryExists(src_file_path);
45 // |src_file_path| exists and is a file.
51 if (src_file_path.value() == dest_file_path.value())
334 RelayCopy(const FilePath& src_file_path,
338 src_file_path_(src_file_path),
360 RelayMove(const FilePath& src_file_path,
    [all...]
file_util_proxy.h 116 // Copies a file or a directory from |src_file_path| to |dest_file_path|
125 const FilePath& src_file_path,
129 // Moves a file or a directory from src_file_path to dest_file_path.
133 const FilePath& src_file_path,
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
move_operation.h 37 // Performs the move operation on the file at drive path |src_file_path|
40 void Move(const base::FilePath& src_file_path,
copy_operation.cc 30 // Copies a file from |src_file_path| to |dest_file_path| on the local
34 const base::FilePath& src_file_path,
36 return base::CopyFile(src_file_path, dest_file_path) ?
104 void CopyOperation::Copy(const base::FilePath& src_file_path,
111 src_file_path,
393 const base::FilePath& src_file_path = result->first.path; local
395 src_file_path,
move_operation.cc 32 void MoveOperation::Move(const base::FilePath& src_file_path,
39 src_file_path,
copy_operation.h 56 // Performs the copy operation on the file at drive path |src_file_path|
59 void Copy(const base::FilePath& src_file_path,
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
native_media_file_util.h 76 const base::FilePath& src_file_path,
119 const base::FilePath& src_file_path,
146 const base::FilePath& src_file_path,
native_media_file_util.cc 238 const base::FilePath& src_file_path,
247 src_file_path, dest_url, callback));
356 const base::FilePath& src_file_path,
361 CopyInForeignFileSync(context.get(), src_file_path, dest_url);
416 base::FilePath src_file_path; local
421 &src_file_path);
424 if (fileapi::NativeFileUtil::DirectoryExists(src_file_path))
441 return fileapi::NativeFileUtil::CopyOrMoveFile(src_file_path, dest_file_path,
447 const base::FilePath& src_file_path,
450 if (src_file_path.empty()
    [all...]
device_media_async_file_util.h 83 const base::FilePath& src_file_path,

Completed in 238 milliseconds

1 2