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

1 2

  /external/chromium_org/net/disk_cache/memory/
mem_backend_impl.h 72 virtual int DoomEntry(const std::string& key,
94 bool DoomEntry(const std::string& key);
mem_backend_impl.cc 152 int MemBackendImpl::DoomEntry(const std::string& key,
154 if (DoomEntry(key))
256 bool MemBackendImpl::DoomEntry(const std::string& key) {
  /external/chromium_org/content/browser/appcache/
appcache_disk_cache.cc 135 int DoomEntry(int64 key, const net::CompletionCallback& callback) {
136 int rv = owner_->disk_cache()->DoomEntry(
261 int AppCacheDiskCache::DoomEntry(int64 key,
275 return (new ActiveCall(this))->DoomEntry(key, callback);
354 rv = DoomEntry(iter->key, iter->callback);
appcache_disk_cache.h 51 virtual int DoomEntry(int64 key,
58 // PendingCalls allow CreateEntry, OpenEntry, and DoomEntry to be called
appcache_disk_cache_unittest.cc 65 disk_cache->DoomEntry(3, completion_callback_);
117 disk_cache->DoomEntry(3, completion_callback_));
appcache_response.h 90 virtual int DoomEntry(int64 key, const net::CompletionCallback& callback) = 0;
appcache_response.cc 392 rv = disk_cache_->DoomEntry(response_id_, create_callback_);
  /external/chromium_org/net/disk_cache/
disk_cache.h 123 virtual int DoomEntry(const std::string& key,
disk_cache_test_base.h 127 int DoomEntry(const std::string& key);
disk_cache_test_base.cc 145 int DiskCacheTestWithCache::DoomEntry(const std::string& key) {
147 int rv = cache_->DoomEntry(key, cb.callback());
  /external/chromium_org/net/disk_cache/blockfile/
in_flight_backend_io.h 54 void DoomEntry(const std::string& key);
160 void DoomEntry(const std::string& key,
backend_impl_v3.h 181 virtual int DoomEntry(const std::string& key,
in_flight_backend_io.cc 97 void BackendIO::DoomEntry(const std::string& key) {
356 void InFlightBackendIO::DoomEntry(const std::string& key,
359 operation->DoomEntry(key);
backend_impl.h 268 virtual int DoomEntry(const std::string& key,
stress_cache.cc 181 rv = cache->DoomEntry(keys[key], cb2.callback());
  /external/chromium_org/net/disk_cache/simple/
simple_backend_impl.h 97 virtual int DoomEntry(const std::string& key,
simple_backend_impl.cc 376 // block from OpenEntry/CreateEntry/DoomEntry.
420 int SimpleBackendImpl::DoomEntry(const std::string& key,
428 base::Bind(&SimpleBackendImpl::DoomEntry, base::Unretained(this), key);
435 return simple_entry->DoomEntry(callback);
659 return active_it->second->DoomEntry(callback);
simple_entry_impl.h 76 int DoomEntry(const CompletionCallback& callback);
simple_synchronous_entry.h 131 static int DoomEntry(const base::FilePath& path,
134 // Like |DoomEntry()| above. Deletes all entries corresponding to the
simple_entry_impl.cc 280 int SimpleEntryImpl::DoomEntry(const CompletionCallback& callback) {
301 DoomEntry(CompletionCallback());
    [all...]
  /external/chromium_org/net/http/
http_cache.cc 591 int rv = DoomEntry(key, NULL);
595 int HttpCache::DoomEntry(const std::string& key, Transaction* trans) {
635 int rv = disk_cache_->DoomEntry(key, pending_op->callback);
653 // Defer to DoomEntry if there is an active entry, otherwise call
656 DoomEntry(key, NULL);
    [all...]
http_cache.h 285 int DoomEntry(const std::string& key, Transaction* trans);
mock_http_cache.h 107 virtual int DoomEntry(const std::string& key,
http_cache_transaction.cc     [all...]
mock_http_cache.cc 429 int MockDiskCache::DoomEntry(const std::string& key,

Completed in 3659 milliseconds

1 2