/external/chromium_org/chrome/browser/chromeos/drive/file_system/ |
download_operation.cc | 29 // resource locally, and returns FILE_ERROR_OK with |cache_file_path| storing 32 // returns FILE_ERROR_OK with |cache_file_path| storing the path to the 35 // returns FILE_ERROR_OK, but |cache_file_path| is kept empty. 43 base::FilePath* cache_file_path) { 46 DCHECK(cache_file_path); 73 *cache_file_path = gdoc_file_path; 78 // Leave |cache_file_path| empty when no cache entry is found. 83 // Leave |cache_file_path| empty when the stored file is obsolete and has no 89 // Fill |cache_file_path| with the path to the cached file. 90 error = cache->GetFile(local_id, cache_file_path); 302 base::FilePath* cache_file_path = new base::FilePath; local 336 base::FilePath* cache_file_path = new base::FilePath; local 450 base::FilePath* cache_file_path = new base::FilePath; local [all...] |
download_operation.h | 90 base::FilePath* cache_file_path, 114 base::FilePath* cache_file_path,
|
update_operation.cc | 30 base::FilePath cache_file_path; member in struct:drive::file_system::UpdateOperation::LocalState 53 error = cache->GetFile(local_state->local_id, &local_state->cache_file_path); 58 const std::string& md5 = util::GetMd5Digest(local_state->cache_file_path); 164 local_state->cache_file_path,
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
fake_file_system_unittest.cc | 40 base::FilePath cache_file_path; local 52 &initialize_error, &entry, &cache_file_path, &cancel_download), 61 EXPECT_TRUE(cache_file_path.empty()); 78 &initialize_error, &entry, &cache_file_path, &cancel_download), 87 ASSERT_FALSE(cache_file_path.empty()); 96 base::ReadFileToString(cache_file_path, &cache_file_content)); 103 base::FilePath cache_file_path; local 111 &initialize_error, &entry, &cache_file_path, &cancel_download),
|
download_handler.cc | 36 const base::FilePath& cache_file_path() const { return cache_file_path_; } function in class:drive::__anon4169::DriveUserData 76 base::FilePath* cache_file_path, 82 *cache_file_path = dest_path; 191 return data ? data->cache_file_path() : base::FilePath(); 286 base::FilePath* cache_file_path = new base::FilePath; local 292 cache_file_path), 296 base::Owned(cache_file_path))); 300 const base::FilePath* cache_file_path, 313 data->set_cache_file_path(*cache_file_path);
|
file_cache.h | 84 // FILE_ERROR_OK with |cache_file_path| storing the path to the file. 85 // |cache_file_path| must not be null. 86 FileError GetFile(const std::string& id, base::FilePath* cache_file_path); 103 base::FilePath* cache_file_path);
|
file_cache_unittest.cc | 211 base::FilePath cache_file_path; local 217 id, &cache_file_path), 223 cache_file_path.BaseName().AsUTF8Unsafe()); 264 base::FilePath cache_file_path; local 272 &cache_file_path), 276 EXPECT_TRUE(base::PathExists(cache_file_path)); 277 EXPECT_EQ(cache_file_path, cache_->GetCacheFilePath(id)); 297 base::FilePath cache_file_path; local 303 id, &cache_file_path), 308 EXPECT_TRUE(base::PathExists(cache_file_path)); 900 base::FilePath cache_file_path; local [all...] |
download_handler.h | 88 // Sets |cache_file_path| as user data of the download item specified by |id|. 90 const base::FilePath* cache_file_path,
|
file_cache.cc | 122 base::FilePath* cache_file_path) { 124 DCHECK(cache_file_path); 131 *cache_file_path = GetCacheFilePath(id); 223 base::FilePath* cache_file_path) { 225 DCHECK(cache_file_path); 247 *cache_file_path = path;
|
file_system.cc | 137 base::FilePath* cache_file_path) { 143 return cache->MarkAsMounted(local_id, cache_file_path); 148 base::FilePath* cache_file_path, 151 callback.Run(error, *cache_file_path); 948 base::FilePath* cache_file_path = new base::FilePath; local [all...] |
dummy_file_system.h | 91 const base::FilePath& cache_file_path,
|
fake_file_system.h | 121 const base::FilePath& cache_file_path,
|
file_system_interface.h | 421 const base::FilePath& cache_file_path,
|
file_system.h | 150 const base::FilePath& cache_file_path,
|
fake_file_system.cc | 214 const base::FilePath& cache_file_path,
|
/external/chromium_org/components/nacl/browser/ |
nacl_browser.cc | 318 base::FilePath cache_file_path; local 319 browser_delegate_->GetCacheDirectory(&cache_file_path); 323 cache_file_path.Append(kValidationCacheFileName);
|
pnacl_host.cc | 77 base::FilePath cache_file_path; local 78 browser_delegate->GetCacheDirectory(&cache_file_path); 81 return cache_file_path.Append(kTranslationCacheDirectoryName);
|