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

1 2

  /external/chromium_org/chrome/browser/chromeos/drive/
file_cache_unittest.cc 174 const base::FilePath src_file_path = temp_dir_.path().Append("test.dat"); local
176 EXPECT_TRUE(google_apis::test_util::WriteStringToFile(src_file_path,
188 EXPECT_EQ(FILE_ERROR_OK, cache_->Store(id, md5, src_file_path,
214 EXPECT_EQ(FILE_ERROR_OK, cache_->Store(id, md5, src_file_path,
228 const base::FilePath src_file_path = temp_dir_.path().Append("test.dat"); local
230 EXPECT_TRUE(google_apis::test_util::WriteStringToFile(src_file_path,
240 id, md5, src_file_path, FileCache::FILE_OPERATION_COPY));
248 EXPECT_TRUE(base::ContentsEqual(src_file_path, cache_file_path));
257 id, std::string(), src_file_path, FileCache::FILE_OPERATION_COPY));
268 id, md5, src_file_path, FileCache::FILE_OPERATION_COPY))
272 const base::FilePath src_file_path = temp_dir_.path().Append("test.dat"); local
322 const base::FilePath src_file_path = temp_dir_.path().Append("test.dat"); local
401 const base::FilePath src_file_path = temp_dir_.path().Append("test.dat"); local
472 const base::FilePath src_file_path = temp_dir_.path().Append("test.dat"); local
    [all...]
dummy_file_system.h 27 virtual void Copy(const base::FilePath& src_file_path,
31 virtual void Move(const base::FilePath& src_file_path,
fake_file_system.h 56 virtual void Copy(const base::FilePath& src_file_path,
60 virtual void Move(const base::FilePath& src_file_path,
file_system_interface.h 196 // Copies |src_file_path| to |dest_file_path| on the file system.
197 // |src_file_path| can be a hosted document (see limitations below).
198 // |dest_file_path| is expected to be of the same type of |src_file_path|
199 // (i.e. if |src_file_path| is a file, |dest_file_path| will be created as
207 // - |src_file_path| cannot be a regular file (i.e. non-hosted document)
212 // The file entries represented by |src_file_path| and the parent directory
217 virtual void Copy(const base::FilePath& src_file_path,
222 // Moves |src_file_path| to |dest_file_path| on the file system.
223 // |src_file_path| can be a file (regular or hosted document) or a directory.
224 // |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,
101 virtual void Move(const base::FilePath& src_file_path,
file_system_unittest.cc 314 base::FilePath src_file_path(FILE_PATH_LITERAL("drive/root/File 1.txt"));
316 EXPECT_TRUE(GetResourceEntrySync(src_file_path));
320 file_system_->Copy(src_file_path,
344 base::FilePath src_file_path(FILE_PATH_LITERAL("drive/root/File 1.txt"));
347 EXPECT_TRUE(GetResourceEntrySync(src_file_path));
354 file_system_->Move(src_file_path,
    [all...]
fake_file_system.cc 61 void FakeFileSystem::Copy(const base::FilePath& src_file_path,
68 void FakeFileSystem::Move(const base::FilePath& src_file_path,
  /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|
51 void Move(const base::FilePath& src_file_path,
move_operation.cc 81 void MoveOperation::Move(const base::FilePath& src_file_path,
94 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 29 base::FilePath src_file_path; member in struct:drive::file_system::CopyOperation::CopyParams
77 FileError error = metadata->GetResourceEntryByPath(params->src_file_path,
300 void CopyOperation::Copy(const base::FilePath& src_file_path,
308 params->src_file_path = src_file_path;
  /external/chromium_org/webkit/browser/fileapi/
local_file_util.cc 194 base::FilePath src_file_path; local
195 base::File::Error error = GetLocalFilePath(context, src_url, &src_file_path);
205 src_file_path, dest_file_path, option,
211 const base::FilePath& src_file_path,
213 if (src_file_path.empty())
222 src_file_path, dest_file_path, FileSystemOperation::OPTION_NONE,
async_file_util_adapter.h 90 const base::FilePath& src_file_path,
file_system_file_util.h 150 const base::FilePath& src_file_path,
local_file_util.h 73 const base::FilePath& src_file_path,
async_file_util.h 267 // - File::FILE_ERROR_NOT_FOUND if |src_file_path|
276 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/fileapi/
fileapi_worker.h 94 // Copies a file from |src_file_path| to |dest_file_path|.
96 void Copy(const base::FilePath& src_file_path,
102 // Moves a file from |src_file_path| to |dest_file_path|.
104 void Move(const base::FilePath& src_file_path,
async_file_util.h 74 const base::FilePath& src_file_path,
fileapi_worker.cc 227 void Copy(const base::FilePath& src_file_path,
233 file_system->Copy(src_file_path, dest_file_path, preserve_last_modified,
237 void Move(const base::FilePath& src_file_path,
242 file_system->Move(src_file_path, dest_file_path,
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
native_media_file_util.h 94 const base::FilePath& src_file_path,
138 const base::FilePath& src_file_path,
170 const base::FilePath& src_file_path,
native_media_file_util.cc 250 const base::FilePath& src_file_path,
259 src_file_path, dest_url, callback));
375 const base::FilePath& src_file_path,
380 CopyInForeignFileSync(context.get(), src_file_path, dest_url);
447 base::FilePath src_file_path; local
452 &src_file_path);
455 if (fileapi::NativeFileUtil::DirectoryExists(src_file_path))
474 src_file_path, dest_file_path, option,
480 const base::FilePath& src_file_path,
483 if (src_file_path.empty()
    [all...]
device_media_async_file_util.h 91 const base::FilePath& src_file_path,
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/fileapi/
provider_async_file_util.h 82 const base::FilePath& src_file_path,
  /external/chromium_org/chrome/browser/local_discovery/storage/
privet_filesystem_async_util.h 69 const base::FilePath& src_file_path,

Completed in 247 milliseconds

1 2