Searched defs:DoomEntry (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/content/browser/appcache/
H A Dappcache_disk_cache.cc135 int DoomEntry(int64 key, const net::CompletionCallback& callback) { function in class:content::AppCacheDiskCache::ActiveCall
136 int rv = owner_->disk_cache()->DoomEntry(
261 int AppCacheDiskCache::DoomEntry(int64 key, function in class:content::AppCacheDiskCache
275 return (new ActiveCall(this))->DoomEntry(key, callback);
354 rv = DoomEntry(iter->key, iter->callback);
/external/chromium_org/net/disk_cache/
H A Ddisk_cache_test_base.cc145 int DiskCacheTestWithCache::DoomEntry(const std::string& key) { function in class:DiskCacheTestWithCache
147 int rv = cache_->DoomEntry(key, cb.callback());
/external/chromium_org/net/disk_cache/memory/
H A Dmem_backend_impl.cc152 int MemBackendImpl::DoomEntry(const std::string& key, function in class:disk_cache::MemBackendImpl
154 if (DoomEntry(key))
256 bool MemBackendImpl::DoomEntry(const std::string& key) { function in class:disk_cache::MemBackendImpl
/external/chromium_org/net/disk_cache/blockfile/
H A Din_flight_backend_io.cc97 void BackendIO::DoomEntry(const std::string& key) { function in class:disk_cache::BackendIO
356 void InFlightBackendIO::DoomEntry(const std::string& key, function in class:disk_cache::InFlightBackendIO
359 operation->DoomEntry(key);
H A Dbackend_impl_v3.cc570 int BackendImplV3::DoomEntry(const std::string& key, function in class:disk_cache::BackendImplV3
1490 int BackendImplV3::DoomEntry(const std::string& key,
H A Dbackend_impl.cc1222 int BackendImpl::DoomEntry(const std::string& key, function in class:disk_cache::BackendImpl
1225 background_queue_.DoomEntry(key, callback);
/external/chromium_org/net/http/
H A Dmock_http_cache.cc429 int MockDiskCache::DoomEntry(const std::string& key, function in class:MockDiskCache
H A Dhttp_cache.cc591 int rv = DoomEntry(key, NULL);
595 int HttpCache::DoomEntry(const std::string& key, Transaction* trans) { function in class:net::HttpCache
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);
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_backend_impl.cc376 // block from OpenEntry/CreateEntry/DoomEntry.
420 int SimpleBackendImpl::DoomEntry(const std::string& key, function in class:disk_cache::SimpleBackendImpl
428 base::Bind(&SimpleBackendImpl::DoomEntry, base::Unretained(this), key);
435 return simple_entry->DoomEntry(callback);
659 return active_it->second->DoomEntry(callback);
H A Dsimple_entry_impl.cc280 int SimpleEntryImpl::DoomEntry(const CompletionCallback& callback) { function in class:disk_cache::SimpleEntryImpl
301 DoomEntry(CompletionCallback());
1084 base::Bind(&SimpleSynchronousEntry::DoomEntry, path_, entry_hash_),
H A Dsimple_synchronous_entry.cc258 int SimpleSynchronousEntry::DoomEntry( function in class:disk_cache::SimpleSynchronousEntry

Completed in 3319 milliseconds