Home | History | Annotate | Download | only in http

Lines Matching full:backend

87                                              disk_cache::Backend** backend,
91 thread_, net_log, backend, callback);
113 // open cache entries or the backend itself.
115 PendingOp() : disk_entry(NULL), backend(NULL), writer(NULL), callback(NULL) {}
119 disk_cache::Backend* backend;
135 // A work item encapsulates a single request to the backend with all the
143 CompletionCallback* cb, disk_cache::Backend** backend)
145 backend_(backend) {}
159 bool DoCallback(int result, disk_cache::Backend* backend) {
161 *backend_ = backend;
181 disk_cache::Backend** backend_;
394 // If we don't have a backend, when its construction finishes it will
413 int HttpCache::GetBackend(disk_cache::Backend** backend,
418 *backend = disk_cache_.get();
422 return CreateBackend(backend, callback);
425 disk_cache::Backend* HttpCache::GetCurrentBackend() {
495 int HttpCache::CreateBackend(disk_cache::Backend** backend,
503 backend));
520 int rv = backend_factory_->CreateBackend(net_log_, &pending_op->backend,
909 // active_entries_, we should be creating the backend or the entry.
1023 // Completing the creation of the backend is simpler than the other cases.
1116 disk_cache::Backend* backend = pending_op->backend;
1120 // work items. The first call saves the backend and releases the factory,
1124 disk_cache_.reset(backend);
1146 if (!item->DoCallback(result, backend))