HomeSort by relevance Sort by last modified time
    Searched refs:PendingOp (Results 1 - 2 of 2) sorted by null

  /external/chromium/net/http/
http_cache.h 211 struct PendingOp; // Info for an entry under construction.
229 typedef base::hash_map<std::string, PendingOp*> PendingOpsMap;
276 // Returns the PendingOp for the desired |key|. If an entry is not under
277 // construction already, a new PendingOp structure is created.
278 PendingOp* GetPendingOp(const std::string& key);
280 // Deletes a PendingOp.
281 void DeletePendingOp(PendingOp* pending_op);
325 // (PendingOp, active or doomed entry).
333 bool RemovePendingTransactionFromPendingOp(PendingOp* pending_op,
346 void OnIOComplete(int result, PendingOp* entry)
    [all...]
http_cache.cc 114 struct HttpCache::PendingOp {
115 PendingOp() : disk_entry(NULL), backend(NULL), writer(NULL), callback(NULL) {}
116 ~PendingOp() {}
190 BackendCallback(HttpCache* cache, PendingOp* pending_op)
211 PendingOp* pending_op_;
390 PendingOp* pending_op = pending_it->second;
507 PendingOp* pending_op = GetPendingOp("");
538 PendingOp* pending_op = GetPendingOp("");
610 PendingOp* pending_op = GetPendingOp(key);
689 HttpCache::PendingOp* HttpCache::GetPendingOp(const std::string& key)
    [all...]

Completed in 1229 milliseconds