/external/chromium_org/content/browser/appcache/ |
D | appcache_disk_cache.cc | 135 int DoomEntry(int64 key, const net::CompletionCallback& callback) { in DoomEntry() function in content::AppCacheDiskCache::ActiveCall 136 int rv = owner_->disk_cache()->DoomEntry( in DoomEntry() 261 int AppCacheDiskCache::DoomEntry(int64 key, in DoomEntry() function in content::AppCacheDiskCache 275 return (new ActiveCall(this))->DoomEntry(key, callback); in DoomEntry() 354 rv = DoomEntry(iter->key, iter->callback); in OnCreateBackendComplete()
|
D | appcache_disk_cache_unittest.cc | 65 disk_cache->DoomEntry(3, completion_callback_); in TEST_F() 117 disk_cache->DoomEntry(3, completion_callback_)); in TEST_F()
|
D | appcache_disk_cache.h | 51 virtual int DoomEntry(int64 key,
|
D | appcache_response.h | 90 virtual int DoomEntry(int64 key, const net::CompletionCallback& callback) = 0;
|
D | appcache_response.cc | 392 rv = disk_cache_->DoomEntry(response_id_, create_callback_); in OnCreateEntryComplete()
|
/external/chromium_org/net/disk_cache/memory/ |
D | mem_backend_impl.h | 72 virtual int DoomEntry(const std::string& key, 94 bool DoomEntry(const std::string& key);
|
D | mem_backend_impl.cc | 152 int MemBackendImpl::DoomEntry(const std::string& key, in DoomEntry() function in disk_cache::MemBackendImpl 154 if (DoomEntry(key)) in DoomEntry() 256 bool MemBackendImpl::DoomEntry(const std::string& key) { in DoomEntry() function in disk_cache::MemBackendImpl
|
/external/chromium_org/net/disk_cache/blockfile/ |
D | in_flight_backend_io.h | 54 void DoomEntry(const std::string& key); 160 void DoomEntry(const std::string& key,
|
D | in_flight_backend_io.cc | 97 void BackendIO::DoomEntry(const std::string& key) { in DoomEntry() function in disk_cache::BackendIO 356 void InFlightBackendIO::DoomEntry(const std::string& key, in DoomEntry() function in disk_cache::InFlightBackendIO 359 operation->DoomEntry(key); in DoomEntry()
|
D | backend_impl_v3.h | 181 virtual int DoomEntry(const std::string& key,
|
D | stress_cache.cc | 181 rv = cache->DoomEntry(keys[key], cb2.callback()); in StressTheCache()
|
D | backend_impl.h | 268 virtual int DoomEntry(const std::string& key,
|
/external/chromium_org/net/disk_cache/simple/ |
D | simple_backend_impl.cc | 420 int SimpleBackendImpl::DoomEntry(const std::string& key, in DoomEntry() function in disk_cache::SimpleBackendImpl 428 base::Bind(&SimpleBackendImpl::DoomEntry, base::Unretained(this), key); in DoomEntry() 435 return simple_entry->DoomEntry(callback); in DoomEntry() 659 return active_it->second->DoomEntry(callback); in DoomEntryFromHash()
|
D | simple_backend_impl.h | 97 virtual int DoomEntry(const std::string& key,
|
D | simple_entry_impl.h | 76 int DoomEntry(const CompletionCallback& callback);
|
D | simple_synchronous_entry.h | 131 static int DoomEntry(const base::FilePath& path,
|
D | simple_entry_impl.cc | 280 int SimpleEntryImpl::DoomEntry(const CompletionCallback& callback) { in DoomEntry() function in disk_cache::SimpleEntryImpl 301 DoomEntry(CompletionCallback()); in Doom() 1084 base::Bind(&SimpleSynchronousEntry::DoomEntry, path_, entry_hash_), in DoomEntryInternal()
|
/external/chromium_org/net/disk_cache/ |
D | disk_cache_test_base.cc | 145 int DiskCacheTestWithCache::DoomEntry(const std::string& key) { in DoomEntry() function in DiskCacheTestWithCache 147 int rv = cache_->DoomEntry(key, cb.callback()); in DoomEntry()
|
D | disk_cache.h | 123 virtual int DoomEntry(const std::string& key,
|
D | disk_cache_test_base.h | 127 int DoomEntry(const std::string& key);
|
/external/chromium_org/net/http/ |
D | http_cache.cc | 591 int rv = DoomEntry(key, NULL); in DoomActiveEntry() 595 int HttpCache::DoomEntry(const std::string& key, Transaction* trans) { in DoomEntry() function in net::HttpCache 635 int rv = disk_cache_->DoomEntry(key, pending_op->callback); in AsyncDoomEntry() 656 DoomEntry(key, NULL); in DoomMainEntryForUrl()
|
D | mock_http_cache.h | 107 virtual int DoomEntry(const std::string& key,
|
D | http_cache.h | 285 int DoomEntry(const std::string& key, Transaction* trans);
|
D | http_cache_transaction.cc | 1199 int ret = cache_->DoomEntry(cache_key_, NULL); in DoSuccessfulSendRequest() 1369 return cache_->DoomEntry(cache_key_, this); in DoDoomEntry() 1520 int ret = cache_->DoomEntry(cache_key_, NULL); in DoUpdateCachedResponse() 2731 int rv = cache_->DoomEntry(cache_key_, NULL); in DoomPartialEntry()
|
/external/chromium_org/net/data/cache_tests/dirty_entry5/ |
D | contents.txt | 164 ASSERT_EQ(net::OK, DoomEntry(key3));
|