/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),
|
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_cache.h | 74 // FILE_ERROR_OK with |cache_file_path| storing the path to the file. 75 // |cache_file_path| must not be null. 76 FileError GetFile(const std::string& id, base::FilePath* cache_file_path); 94 base::FilePath* cache_file_path);
|
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.h | 95 // Sets |cache_file_path| as user data of the download item specified by |id|. 98 const base::FilePath* 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...] |
file_cache.cc | 121 base::FilePath* cache_file_path) { 123 DCHECK(cache_file_path); 132 *cache_file_path = GetCacheFilePath(id); 232 base::FilePath* cache_file_path) { 234 DCHECK(cache_file_path); 259 *cache_file_path = path;
|
dummy_file_system.h | 92 const base::FilePath& cache_file_path,
|
fake_file_system.h | 120 const base::FilePath& cache_file_path,
|
file_system_interface.h | 412 const base::FilePath& cache_file_path,
|
file_system.h | 153 const base::FilePath& cache_file_path,
|
fake_file_system.cc | 212 const base::FilePath& cache_file_path,
|
/external/chromium_org/chrome/browser/chromeos/drive/file_system/ |
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...] |
download_operation.h | 91 base::FilePath* cache_file_path, 108 base::FilePath* cache_file_path,
|
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,
|
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));
|
/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/components/nacl/browser/ |
nacl_browser.cc | 311 base::FilePath cache_file_path; local 312 browser_delegate_->GetCacheDirectory(&cache_file_path); 316 cache_file_path.Append(kValidationCacheFileName);
|
pnacl_host.cc | 126 base::FilePath cache_file_path; local 127 browser_delegate->GetCacheDirectory(&cache_file_path); 130 return cache_file_path.Append(kTranslationCacheDirectoryName);
|