OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ActiveEntry
(Results
1 - 4
of
4
) sorted by null
/external/chromium/net/http/
http_cache.h
217
struct
ActiveEntry
{
218
explicit
ActiveEntry
(disk_cache::Entry* entry);
219
~
ActiveEntry
();
229
typedef base::hash_map<std::string,
ActiveEntry
*> ActiveEntriesMap;
231
typedef std::set<
ActiveEntry
*> ActiveEntriesSet;
262
void FinalizeDoomedEntry(
ActiveEntry
* entry);
265
ActiveEntry
* FindActiveEntry(const std::string& key);
267
// Creates a new
ActiveEntry
and starts tracking it. |disk_entry| is the disk
269
ActiveEntry
* ActivateEntry(disk_cache::Entry* disk_entry);
271
// Deletes an
ActiveEntry
[
all
...]
http_cache.cc
96
HttpCache::
ActiveEntry
::
ActiveEntry
(disk_cache::Entry* entry)
103
HttpCache::
ActiveEntry
::~
ActiveEntry
() {
139
WorkItem(WorkItemOperation operation, Transaction* trans,
ActiveEntry
** entry)
149
void NotifyTransaction(int result,
ActiveEntry
* entry) {
179
ActiveEntry
** entry_;
376
ActiveEntry
* entry = active_entries_.begin()->second;
584
// Need to abandon the
ActiveEntry
, but any transaction attached to the entry
593
ActiveEntry
* entry = it->second
[
all
...]
/external/chromium_org/net/http/
http_cache.h
223
struct
ActiveEntry
{
224
explicit
ActiveEntry
(disk_cache::Entry* entry);
225
~
ActiveEntry
();
235
typedef base::hash_map<std::string,
ActiveEntry
*> ActiveEntriesMap;
237
typedef std::set<
ActiveEntry
*> ActiveEntriesSet;
275
void FinalizeDoomedEntry(
ActiveEntry
* entry);
278
ActiveEntry
* FindActiveEntry(const std::string& key);
280
// Creates a new
ActiveEntry
and starts tracking it. |disk_entry| is the disk
282
ActiveEntry
* ActivateEntry(disk_cache::Entry* disk_entry);
284
// Deletes an
ActiveEntry
[
all
...]
http_cache.cc
92
HttpCache::
ActiveEntry
::
ActiveEntry
(disk_cache::Entry* entry)
99
HttpCache::
ActiveEntry
::~
ActiveEntry
() {
135
WorkItem(WorkItemOperation operation, Transaction* trans,
ActiveEntry
** entry)
150
void NotifyTransaction(int result,
ActiveEntry
* entry) {
180
ActiveEntry
** entry_;
305
ActiveEntry
* entry = active_entries_.begin()->second;
550
// Need to abandon the
ActiveEntry
, but any transaction attached to the entry
560
ActiveEntry
* entry = it->second
[
all
...]
Completed in 189 milliseconds