Home
last modified time | relevance | path

Searched refs:PendingOp (Results 1 – 2 of 2) sorted by relevance

/external/chromium/net/http/
Dhttp_cache.h212 struct PendingOp; // Info for an entry under construction.
230 typedef base::hash_map<std::string, PendingOp*> PendingOpsMap;
279 PendingOp* GetPendingOp(const std::string& key);
282 void DeletePendingOp(PendingOp* pending_op);
334 bool RemovePendingTransactionFromPendingOp(PendingOp* pending_op,
347 void OnIOComplete(int result, PendingOp* entry);
350 void OnBackendCreated(int result, PendingOp* pending_op);
Dhttp_cache.cc114 struct HttpCache::PendingOp { struct in net::HttpCache
115 PendingOp() : disk_entry(NULL), backend(NULL), writer(NULL), callback(NULL) {} in PendingOp() argument
116 ~PendingOp() {} in ~PendingOp() argument
190 BackendCallback(HttpCache* cache, PendingOp* pending_op) in BackendCallback()
211 PendingOp* pending_op_;
390 PendingOp* pending_op = pending_it->second; in ~HttpCache()
507 PendingOp* pending_op = GetPendingOp(""); in CreateBackend()
538 PendingOp* pending_op = GetPendingOp(""); in GetBackendForTransaction()
610 PendingOp* pending_op = GetPendingOp(key); in AsyncDoomEntry()
689 HttpCache::PendingOp* HttpCache::GetPendingOp(const std::string& key) { in GetPendingOp()
[all …]