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

  /external/chromium_org/chrome/browser/chromeos/drive/
fake_file_system_unittest.cc 38 base::FilePath cache_file_path; local
49 &initialize_error, &cache_file_path, &entry),
58 EXPECT_TRUE(cache_file_path.empty());
75 &initialize_error, &cache_file_path, &entry),
84 ASSERT_FALSE(cache_file_path.empty());
93 base::ReadFileToString(cache_file_path, &cache_file_content));
100 base::FilePath cache_file_path; local
106 &initialize_error, &cache_file_path, &entry),
file_cache_unittest.cc 190 base::FilePath cache_file_path; local
191 EXPECT_EQ(FILE_ERROR_OK, cache_->GetFile(id, &cache_file_path));
194 cache_file_path.value());
197 EXPECT_TRUE(base::ReadFileToString(cache_file_path, &contents));
205 EXPECT_EQ(FILE_ERROR_NOT_FOUND, cache_->GetFile(id, &cache_file_path));
211 EXPECT_EQ(FILE_ERROR_NOT_FOUND, cache_->GetFile(id, &cache_file_path));
217 EXPECT_EQ(FILE_ERROR_OK, cache_->GetFile(id, &cache_file_path));
220 cache_file_path.value());
223 EXPECT_TRUE(base::ReadFileToString(cache_file_path, &contents));
246 base::FilePath cache_file_path; local
337 base::FilePath cache_file_path; local
418 base::FilePath cache_file_path; local
492 base::FilePath cache_file_path; local
    [all...]
download_handler.cc 39 const base::FilePath& cache_file_path() const { return cache_file_path_; } function in class:drive::__anon7684::DriveUserData
79 base::FilePath* cache_file_path,
85 *cache_file_path = dest_path;
205 return data ? data->cache_file_path() : base::FilePath();
302 base::FilePath* cache_file_path = new base::FilePath; local
308 cache_file_path),
313 base::Owned(cache_file_path)));
318 const base::FilePath* cache_file_path,
331 data->set_cache_file_path(*cache_file_path);
file_system.cc 139 base::FilePath* cache_file_path) {
145 return cache->MarkAsMounted(local_id, cache_file_path);
150 base::FilePath* cache_file_path,
153 callback.Run(error, *cache_file_path);
891 base::FilePath* cache_file_path = new base::FilePath; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/sync/
entry_update_performer.cc 34 base::FilePath cache_file_path; member in struct:drive::internal::EntryUpdatePerformer::LocalState
94 error = cache->GetFile(local_id, &local_state->cache_file_path);
280 local_state->cache_file_path,
300 local_state->cache_file_path,
entry_update_performer_unittest.cc 136 base::FilePath cache_file_path; local
144 &error, &cache_file_path, &src_entry));
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
copy_operation_unittest.cc 341 base::FilePath cache_file_path; local
348 &cache_file_path),
354 EXPECT_TRUE(base::ReadFileToString(cache_file_path, &copied_contents));
download_operation_unittest.cc 460 base::FilePath cache_file_path; local
468 &error, &cache_file_path, &entry));
473 EXPECT_TRUE(base::GetFileSize(cache_file_path, &cache_file_size));
copy_operation.cc 153 base::FilePath cache_file_path; local
154 error = cache->GetFile(params->src_entry.local_id(), &cache_file_path);
158 return cache->Store(local_id, std::string(), cache_file_path,
download_operation.cc 65 // resource locally, and returns FILE_ERROR_OK with |cache_file_path| storing
68 // returns FILE_ERROR_OK with |cache_file_path| storing the path to the
71 // returns FILE_ERROR_OK, but |cache_file_path| is kept empty.
79 base::FilePath* cache_file_path,
83 DCHECK(cache_file_path);
114 *cache_file_path = gdoc_file_path;
122 // This entry exists on the server, leave |cache_file_path| empty to
144 // Leave |cache_file_path| empty when the stored file is obsolete and has no
154 // Fill |cache_file_path| with the path to the cached file.
155 error = cache->GetFile(local_id, cache_file_path);
371 base::FilePath* cache_file_path = new base::FilePath; local
412 base::FilePath* cache_file_path = new base::FilePath; local
496 base::FilePath* cache_file_path = new base::FilePath; local
    [all...]
  /external/chromium_org/components/nacl/browser/
pnacl_host.cc 126 base::FilePath cache_file_path; local
127 browser_delegate->GetCacheDirectory(&cache_file_path);
130 return cache_file_path.Append(kTranslationCacheDirectoryName);
nacl_browser.cc 311 base::FilePath cache_file_path; local
312 browser_delegate_->GetCacheDirectory(&cache_file_path);
316 cache_file_path.Append(kValidationCacheFileName);

Completed in 355 milliseconds