Searched refs:CacheAddr (Results 1 – 10 of 10) sorted by relevance
/external/chromium/net/disk_cache/ |
D | disk_format.h | 63 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 …]
|
D | addr.h | 53 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_;
|
D | rankings.h | 143 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;
|
D | rankings.cc | 335 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()
|
D | block_files_unittest.cc | 90 CacheAddr entries[kNumEntries]; in TEST_F() 104 CacheAddr temp = entries[source1]; in TEST_F()
|
D | entry_impl.h | 76 CacheAddr GetNextAddress();
|
D | backend_impl.h | 268 typedef base::hash_map<CacheAddr, EntryImpl*> EntriesMap;
|
D | backend_impl.cc | 69 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()
|
D | entry_impl.cc | 512 CacheAddr EntryImpl::GetNextAddress() { in GetNextAddress()
|
/external/chromium/net/tools/dump_cache/ |
D | dump_files.cc | 125 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()
|