Searched defs:backend_ (Results 1 - 25 of 61) sorted by last modified time

123

/external/chromium_org/net/disk_cache/
H A Dbackend_unittest.cc39 #define CACHE_UMA_BACKEND_IMPL_OBJ backend_
2994 disk_cache::BackendImpl* backend_ = cache_impl_; // Needed be the macro. local
H A Dcache_creator.cc53 scoped_ptr<disk_cache::Backend>* backend_; member in class:__anon9163::CacheCreator
80 backend_(backend),
126 *backend_ = created_cache_.Pass();
128 *backend_.reset(
/external/chromium_org/net/disk_cache/blockfile/
H A Dentry_impl.cc22 #define CACHE_UMA_BACKEND_IMPL_OBJ backend_
98 : backend_(backend->GetWeakPtr()), offset_(0), grow_allowed_(true) {
102 if (backend_.get())
103 backend_->BufferDeleted(capacity() - kMaxBlockSize);
136 base::WeakPtr<BackendImpl> backend_; member in class:disk_cache::EntryImpl::UserBuffer
259 if (backend_.get())
260 backend_->BufferDeleted(capacity() - kMaxBlockSize);
279 if (!backend_.get())
286 grow_allowed_ = backend_->IsAllocAllowed(current_size, required);
300 backend_(backen
[all...]
H A Dentry_impl.h259 base::WeakPtr<BackendImpl> backend_; // Back pointer to the cache. member in class:disk_cache::EntryImpl
H A Dentry_impl_v3.cc22 #define CACHE_UMA_BACKEND_IMPL_OBJ backend_
47 : backend_(backend->GetWeakPtr()), offset_(0), grow_allowed_(true) {
51 if (backend_)
52 backend_->BufferDeleted(capacity() - kMaxBlockSize);
85 base::WeakPtr<BackendImplV3> backend_; member in class:disk_cache::EntryImplV3::UserBuffer
208 if (backend_)
209 backend_->BufferDeleted(capacity() - kMaxBlockSize);
228 if (!backend_)
235 grow_allowed_ = backend_->IsAllocAllowed(current_size, required);
248 : backend_(backen
[all...]
H A Dentry_impl_v3.h190 base::WeakPtr<BackendImplV3> backend_; // Back pointer to the cache. member in class:disk_cache::EntryImplV3
H A Deviction.h72 BackendImpl* backend_; member in class:disk_cache::Eviction
H A Deviction_v3.h60 BackendImplV3* backend_; member in class:disk_cache::EvictionV3
H A Din_flight_backend_io.h121 BackendImpl* backend_; member in class:disk_cache::BackendIO
213 BackendImpl* backend_; member in class:disk_cache::InFlightBackendIO
H A Dindex_table_v3.h261 IndexTableBackend* backend_; member in class:disk_cache::IndexTable
H A Drankings.h205 BackendImpl* backend_; member in class:disk_cache::Rankings
H A Dsparse_control.cc57 : backend_(backend->GetWeakPtr()), name_(name), signature_(0) {}
72 base::WeakPtr<disk_cache::BackendImpl> backend_; member in class:__anon9158::ChildrenDeleter
107 if (!backend_.get())
110 disk_cache::File* file(backend_->File(address));
130 if (!children_map_.FindNextSetBit(&child_id) || !backend_.get()) {
135 backend_->SyncDoomEntry(child_name);
355 DCHECK(entry->backend_.get());
356 ChildrenDeleter* deleter = new ChildrenDeleter(entry->backend_.get(),
459 if (!entry_->backend_.get())
462 child_ = entry_->backend_
[all...]
H A Dsparse_control_v3.cc57 : backend_(backend->GetWeakPtr()), name_(name), signature_(0) {}
72 base::WeakPtr<disk_cache::BackendImpl> backend_; member in class:__anon9159::ChildrenDeleter
107 if (!backend_)
110 disk_cache::File* file(backend_->File(address));
130 if (!children_map_.FindNextSetBit(&child_id) || !backend_) {
135 backend_->SyncDoomEntry(child_name);
334 DCHECK(entry->backend_);
335 ChildrenDeleter* deleter = new ChildrenDeleter(entry->backend_.get(),
461 if (!entry_->backend_)
464 child_ = entry_->backend_
[all...]
/external/chromium_org/net/disk_cache/memory/
H A Dmem_backend_impl.cc187 : backend_(backend), current_(NULL) {
192 if (!backend_)
195 MemEntryImpl* node = backend_->rankings_.GetNext(current_);
199 node = backend_->rankings_.GetNext(node);
211 base::WeakPtr<MemBackendImpl> backend_; member in class:disk_cache::MemBackendImpl::MemIterator
H A Dmem_entry_impl.h175 MemBackendImpl* backend_; // Back pointer to the cache. member in class:disk_cache::MemEntryImpl
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_backend_impl.cc202 if (backend_) {
203 DCHECK_EQ(1U, backend_->active_entries_.count(entry_hash_));
204 backend_->active_entries_.erase(entry_hash_);
220 backend_(backend->AsWeakPtr()) {}
223 base::WeakPtr<SimpleBackendImpl> backend_; member in class:disk_cache::SimpleBackendImpl::ActiveEntryProxy
473 : backend_(backend),
483 return backend_->index_->ExecuteWhenReady(open_next_entry_impl);
489 if (!backend_) {
498 hashes_to_enumerate_ = backend_->index()->GetAllHashes().Pass();
503 if (backend_
535 base::WeakPtr<SimpleBackendImpl> backend_; member in class:disk_cache::FINAL
[all...]
H A Dsimple_entry_impl.h311 const base::WeakPtr<SimpleBackendImpl> backend_; member in class:disk_cache::SimpleEntryImpl
/external/chromium_org/net/extras/sqlite/
H A Dsqlite_channel_id_store.h54 scoped_refptr<Backend> backend_; member in class:net::SQLiteChannelIDStore
/external/chromium_org/net/http/
H A Ddisk_based_cert_cache.cc108 disk_cache::Backend* backend_; member in class:net::DiskBasedCertCache::WriteWorker
128 : backend_(backend),
216 return backend_->OpenEntry(key_, &entry_, io_callback_);
232 return backend_->CreateEntry(key_, &entry_, io_callback_);
341 disk_cache::Backend* backend_; member in class:net::DiskBasedCertCache::ReadWorker
360 : backend_(backend),
441 return backend_->OpenEntry(key_, &entry_, io_callback_);
502 : backend_(backend),
507 DCHECK(backend_);
543 new ReadWorker(backend_,
[all...]
H A Ddisk_based_cert_cache.h88 disk_cache::Backend* backend_; member in class:net::DiskBasedCertCache
H A Ddisk_cache_based_quic_server_info.h95 disk_cache::Backend* backend_; member in class:net::DiskCacheBasedQuicServerInfo
H A Dhttp_cache.cc148 backend_(NULL) {}
155 backend_(backend) {}
170 if (backend_)
171 *backend_ = backend;
191 disk_cache::Backend** backend_; member in class:net::HttpCache::WorkItem
H A Dmock_http_cache.h238 scoped_ptr<disk_cache::Backend>* backend() { return backend_; }
246 scoped_ptr<disk_cache::Backend>* backend_; member in class:MockBlockingBackendFactory
/external/chromium_org/storage/browser/fileapi/quota/
H A Dquota_reservation_manager.h113 scoped_ptr<QuotaBackend> backend_; member in class:storage::QuotaReservationManager
/external/chromium_org/sync/api/attachments/
H A Dfake_attachment_store.h52 scoped_refptr<Backend> backend_; member in class:syncer::FakeAttachmentStore

Completed in 3782 milliseconds

123