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

  /external/chromium/net/disk_cache/
mem_rankings.h 15 class MemEntryImpl;
24 void Insert(MemEntryImpl* node);
27 void Remove(MemEntryImpl* node);
30 void UpdateRank(MemEntryImpl* node);
33 MemEntryImpl* GetNext(MemEntryImpl* node);
34 MemEntryImpl* GetPrev(MemEntryImpl* node);
37 MemEntryImpl* head_;
38 MemEntryImpl* tail_
    [all...]
mem_rankings.cc 16 void MemRankings::Insert(MemEntryImpl* node) {
28 void MemRankings::Remove(MemEntryImpl* node) {
29 MemEntryImpl* prev = node->prev();
30 MemEntryImpl* next = node->next();
48 void MemRankings::UpdateRank(MemEntryImpl* node) {
53 MemEntryImpl* MemRankings::GetNext(MemEntryImpl* node) {
60 MemEntryImpl* MemRankings::GetPrev(MemEntryImpl* node) {
mem_entry_impl.h 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)
    [all...]
mem_backend_impl.h 22 class MemEntryImpl;
45 void InternalDoomEntry(MemEntryImpl* entry);
48 void UpdateRank(MemEntryImpl* node);
56 // Insert an MemEntryImpl into the ranking list. This method is only called
57 // from MemEntryImpl to insert child entries. The reference can be removed
59 void InsertIntoRankingList(MemEntryImpl* entry);
62 // MemEntryImpl to remove a child entry from the ranking list.
63 void RemoveFromRankingList(MemEntryImpl* entry);
85 typedef base::hash_map<std::string, MemEntryImpl*> EntryMap;
mem_entry_impl.cc 48 MemEntryImpl::MemEntryImpl(MemBackendImpl* backend) {
63 bool MemEntryImpl::CreateEntry(const std::string& key, net::NetLog* net_log) {
78 void MemEntryImpl::InternalDoom() {
104 void MemEntryImpl::Open() {
114 bool MemEntryImpl::InUse() {
127 void MemEntryImpl::Doom() {
140 void MemEntryImpl::Close() {
149 std::string MemEntryImpl::GetKey() const {
155 Time MemEntryImpl::GetLastUsed() const
    [all...]
mem_backend_impl.cc 93 void MemBackendImpl::InternalDoomEntry(MemEntryImpl* entry) {
95 DCHECK(entry->type() == MemEntryImpl::kParentEntry);
107 void MemBackendImpl::UpdateRank(MemEntryImpl* node) {
122 void MemBackendImpl::InsertIntoRankingList(MemEntryImpl* entry) {
126 void MemBackendImpl::RemoveFromRankingList(MemEntryImpl* entry) {
210 MemEntryImpl* cache_entry = new MemEntryImpl(this);
245 MemEntryImpl* next = rankings_.GetNext(NULL);
251 MemEntryImpl* node = next;
277 MemEntryImpl* current = reinterpret_cast<MemEntryImpl*>(*iter)
    [all...]
entry_unittest.cc     [all...]

Completed in 34 milliseconds