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

1 2

  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
move_operation.h 47 // Performs the move operation on the file at drive path |src_file_path|
53 void Move(const base::FilePath& src_file_path,
move_operation.cc 87 void MoveOperation::Move(const base::FilePath& src_file_path,
101 src_file_path,
copy_operation.h 55 // Performs the copy operation on the file at drive path |src_file_path|
61 void Copy(const base::FilePath& src_file_path,
copy_operation.cc 185 void CopyOperation::Copy(const base::FilePath& src_file_path,
203 metadata_, src_file_path, dest_file_path,
  /external/chromium_org/webkit/browser/fileapi/
local_file_util.cc 202 base::FilePath src_file_path; local
203 PlatformFileError error = GetLocalFilePath(context, src_url, &src_file_path);
213 src_file_path, dest_file_path, option,
219 const base::FilePath& src_file_path,
221 if (src_file_path.empty())
230 src_file_path, dest_file_path, FileSystemOperation::OPTION_NONE,
async_file_util.h 269 // - PLATFORM_FILE_ERROR_NOT_FOUND if |src_file_path|
278 const base::FilePath& src_file_path,
async_file_util_adapter.h 90 const base::FilePath& src_file_path,
file_system_file_util.h 158 const base::FilePath& src_file_path,
local_file_util.h 79 const base::FilePath& src_file_path,
async_file_util_adapter.cc 290 const base::FilePath& src_file_path,
298 base::Owned(context_ptr), src_file_path, dest_url),
  /external/chromium_org/chrome/browser/chromeos/drive/
dummy_file_system.h 27 virtual void Copy(const base::FilePath& src_file_path,
31 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,
98 // Moves a file from |src_file_path| to |dest_file_path|.
100 void Move(const base::FilePath& src_file_path,
async_file_util.h 80 const base::FilePath& src_file_path,
fileapi_worker.cc 223 void Copy(const base::FilePath& src_file_path,
229 file_system->Copy(src_file_path, dest_file_path, preserve_last_modified,
233 void Move(const base::FilePath& src_file_path,
239 file_system->Move(src_file_path, dest_file_path, preserve_last_modified,
fake_file_system.h 57 virtual void Copy(const base::FilePath& src_file_path,
61 virtual void Move(const base::FilePath& src_file_path,
file_system_interface.h 206 // Copies |src_file_path| to |dest_file_path| on the file system.
207 // |src_file_path| can be a hosted document (see limitations below).
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
217 // - |src_file_path| cannot be a regular file (i.e. non-hosted document)
222 // The file entries represented by |src_file_path| and the parent directory
227 virtual void Copy(const base::FilePath& src_file_path,
232 // Moves |src_file_path| to |dest_file_path| on the file system.
233 // |src_file_path| can be a file (regular or hosted document) or a directory.
234 // |dest_file_path| is expected to be of the same type of |src_file_path|
    [all...]
file_system.h 93 virtual void Copy(const base::FilePath& src_file_path,
97 virtual void Move(const base::FilePath& src_file_path,
async_file_util.cc 329 const base::FilePath& src_file_path,
343 src_file_path, dest_path,
fake_file_system.cc 63 void FakeFileSystem::Copy(const base::FilePath& src_file_path,
70 void FakeFileSystem::Move(const base::FilePath& src_file_path,
file_cache_unittest.cc 887 const base::FilePath src_file_path = temp_dir_.path().Append("test.dat"); local
889 EXPECT_TRUE(google_apis::test_util::WriteStringToFile(src_file_path,
898 EXPECT_EQ(FILE_ERROR_OK, cache_->Store(id, md5, src_file_path,
    [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/media_galleries/fileapi/
native_media_file_util.h 77 const base::FilePath& src_file_path,
121 const base::FilePath& src_file_path,
153 const base::FilePath& src_file_path,
native_media_file_util.cc 239 const base::FilePath& src_file_path,
248 src_file_path, dest_url, callback));
364 const base::FilePath& src_file_path,
369 CopyInForeignFileSync(context.get(), src_file_path, dest_url);
437 base::FilePath src_file_path; local
442 &src_file_path);
445 if (fileapi::NativeFileUtil::DirectoryExists(src_file_path))
463 src_file_path, dest_file_path, option,
469 const base::FilePath& src_file_path,
472 if (src_file_path.empty()
    [all...]
device_media_async_file_util.h 84 const base::FilePath& src_file_path,

Completed in 164 milliseconds

1 2