OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PendingOp
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/net/http/
http_cache.h
218
struct
PendingOp
; // Info for an entry under construction.
236
typedef base::hash_map<std::string,
PendingOp
*> PendingOpsMap;
290
// Returns the
PendingOp
for the desired |key|. If an entry is not under
291
// construction already, a new
PendingOp
structure is created.
292
PendingOp
* GetPendingOp(const std::string& key);
294
// Deletes a
PendingOp
.
295
void DeletePendingOp(
PendingOp
* pending_op);
339
// (
PendingOp
, active or doomed entry).
347
bool RemovePendingTransactionFromPendingOp(
PendingOp
* pending_op,
360
void OnIOComplete(int result,
PendingOp
* entry)
[
all
...]
http_cache.cc
110
struct HttpCache::
PendingOp
{
111
PendingOp
() : disk_entry(NULL), writer(NULL) {}
112
~
PendingOp
() {}
323
PendingOp
* pending_op = pending_it->second;
460
PendingOp
* pending_op = GetPendingOp(std::string());
492
PendingOp
* pending_op = GetPendingOp(std::string());
576
PendingOp
* pending_op = GetPendingOp(key);
672
HttpCache::
PendingOp
* HttpCache::GetPendingOp(const std::string& key) {
679
PendingOp
* operation = new
PendingOp
();
[
all
...]
/external/chromium/net/http/
http_cache.h
212
struct
PendingOp
; // Info for an entry under construction.
230
typedef base::hash_map<std::string,
PendingOp
*> PendingOpsMap;
277
// Returns the
PendingOp
for the desired |key|. If an entry is not under
278
// construction already, a new
PendingOp
structure is created.
279
PendingOp
* GetPendingOp(const std::string& key);
281
// Deletes a
PendingOp
.
282
void DeletePendingOp(
PendingOp
* pending_op);
326
// (
PendingOp
, active or doomed entry).
334
bool RemovePendingTransactionFromPendingOp(
PendingOp
* pending_op,
347
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 27 milliseconds