Home | History | Annotate | Download | only in disk_cache

Lines Matching refs:MemEntryImpl

47 class MemEntryImpl : public Entry {
54 explicit MemEntryImpl(MemBackendImpl* backend);
66 MemEntryImpl* next() const {
70 MemEntryImpl* prev() const {
74 void set_next(MemEntryImpl* next) {
78 void set_prev(MemEntryImpl* prev) {
117 typedef base::hash_map<int, MemEntryImpl*> EntryMap;
123 ~MemEntryImpl();
146 // Performs the initialization of a MemEntryImpl as a child entry.
149 bool InitChildEntry(MemEntryImpl* parent, int child_id, net::NetLog* net_log);
155 MemEntryImpl* OpenChild(int64 offset, bool create);
160 int FindNextChild(int64 offset, int len, MemEntryImpl** child);
173 MemEntryImpl* next_; // Pointers for the LRU list.
174 MemEntryImpl* prev_;
175 MemEntryImpl* parent_; // Pointer to the parent entry.
185 DISALLOW_COPY_AND_ASSIGN(MemEntryImpl);