Home
last modified time | relevance | path

Searched refs:CacheAddr (Results 1 – 10 of 10) sorted by relevance

/external/chromium/net/disk_cache/
Ddisk_format.h63 typedef uint32 CacheAddr; typedef
73 CacheAddr heads[5];
74 CacheAddr tails[5];
75 CacheAddr transaction; // In-flight operation target.
91 CacheAddr stats; // Storage for usage data.
103 CacheAddr table[kIndexTablesize]; // Default size. Actual size controlled
114 CacheAddr next; // Next entry with the same hash or bucket.
115 CacheAddr rankings_node; // Rankings node for this entry.
121 CacheAddr long_key; // Optional address of a long key.
123 CacheAddr data_addr[4]; // entry.
[all …]
Daddr.h53 explicit Addr(CacheAddr address) : value_(address) {} in Addr()
61 CacheAddr value() const { return value_; } in value()
62 void set_value(CacheAddr address) { in set_value()
136 CacheAddr value_;
Drankings.h143 void SetContents(CacheRankingsBlock* node, CacheAddr address);
146 typedef std::pair<CacheAddr, CacheRankingsBlock*> IteratorPair;
185 bool IsHead(CacheAddr addr, List* list) const;
186 bool IsTail(CacheAddr addr, List* list) const;
Drankings.cc335 CacheAddr node_value = node->address().value(); in Remove()
535 void Rankings::SetContents(CacheRankingsBlock* node, CacheAddr address) { in SetContents()
611 Addr node_addr(static_cast<CacheAddr>(control_data_->transaction)); in CompleteTransaction()
683 CacheAddr node_value = node->address().value(); in RevertRemove()
730 CacheAddr node_addr = node->address().value(); in CheckLinks()
821 bool Rankings::IsHead(CacheAddr addr, List* list) const { in IsHead()
833 bool Rankings::IsTail(CacheAddr addr, List* list) const { in IsTail()
849 CacheAddr address = node->address().value(); in UpdateIterators()
860 CacheAddr address = node->address().value(); in InvalidateIterators()
Dblock_files_unittest.cc90 CacheAddr entries[kNumEntries]; in TEST_F()
104 CacheAddr temp = entries[source1]; in TEST_F()
Dentry_impl.h76 CacheAddr GetNextAddress();
Dbackend_impl.h268 typedef base::hash_map<CacheAddr, EntryImpl*> EntriesMap;
Dbackend_impl.cc69 size_t table_size = sizeof(disk_cache::CacheAddr) * table_len; in GetIndexSize()
918 CacheAddr child(entry->GetNextAddress()); in InternalDoomEntry()
1578 std::set<CacheAddr> visited; in MatchEntry()
Dentry_impl.cc512 CacheAddr EntryImpl::GetNextAddress() { in GetNextAddress()
/external/chromium/net/tools/dump_cache/
Ddump_files.cc125 bool LoadEntry(disk_cache::CacheAddr addr, disk_cache::EntryStore* entry);
126 bool LoadRankings(disk_cache::CacheAddr addr,
135 disk_cache::CacheAddr next_addr_;
136 std::set<disk_cache::CacheAddr> dumped_entries_;
189 bool CacheDumper::LoadEntry(disk_cache::CacheAddr addr, in LoadEntry()
214 bool CacheDumper::LoadRankings(disk_cache::CacheAddr addr, in LoadRankings()