Home
last modified time | relevance | path

Searched refs:EntryImpl (Results 1 – 15 of 15) sorted by relevance

/external/chromium/net/disk_cache/
Deviction.h17 class EntryImpl; variable
34 void UpdateRank(EntryImpl* entry, bool modified);
37 void OnOpenEntry(EntryImpl* entry);
38 void OnCreateEntry(EntryImpl* entry);
39 void OnDoomEntry(EntryImpl* entry);
40 void OnDestroyEntry(EntryImpl* entry);
45 void ReportTrimTimes(EntryImpl* entry);
46 Rankings::List GetListForEntry(EntryImpl* entry);
53 void UpdateRankV2(EntryImpl* entry, bool modified);
54 void OnOpenEntryV2(EntryImpl* entry);
[all …]
Dentry_impl.cc30 SyncCallback(disk_cache::EntryImpl* entry, net::IOBuffer* buffer, in SyncCallback()
41 disk_cache::EntryImpl* entry_;
52 entry_->ReportIOTime(disk_cache::EntryImpl::kAsyncIO, start_); in OnFileIOComplete()
82 EntryImpl::EntryImpl(BackendImpl* backend, Addr address) in EntryImpl() function in disk_cache::EntryImpl
99 EntryImpl::~EntryImpl() { in ~EntryImpl()
132 void EntryImpl::Doom() { in Doom()
140 void EntryImpl::Close() { in Close()
144 std::string EntryImpl::GetKey() const { in GetKey()
159 key_file_ = const_cast<EntryImpl*>(this)->GetBackingFile(address, in GetKey()
171 Time EntryImpl::GetLastUsed() const { in GetLastUsed()
[all …]
Dbackend_impl.h115 void UpdateRank(EntryImpl* entry, bool modified);
122 void InternalDoomEntry(EntryImpl* entry);
125 void RemoveEntry(EntryImpl* entry);
134 EntryImpl* GetOpenEntry(CacheRankingsBlock* rankings) const;
210 typedef base::hash_map<CacheAddr, EntryImpl*> EntriesMap;
223 int NewEntry(Addr address, EntryImpl** entry, bool* dirty);
228 EntryImpl* MatchEntry(const std::string& key, uint32 hash, bool find_parent);
238 EntryImpl** next_entry);
242 EntryImpl* GetEnumeratedEntry(CacheRankingsBlock* next, bool to_evict);
245 bool ResurrectEntry(EntryImpl* deleted_entry, Entry** entry);
[all …]
Deviction.cc120 void Eviction::UpdateRank(EntryImpl* entry, bool modified) { in UpdateRank()
127 void Eviction::OnOpenEntry(EntryImpl* entry) { in OnOpenEntry()
132 void Eviction::OnCreateEntry(EntryImpl* entry) { in OnCreateEntry()
139 void Eviction::OnDoomEntry(EntryImpl* entry) { in OnDoomEntry()
146 void Eviction::OnDestroyEntry(EntryImpl* entry) { in OnDestroyEntry()
165 void Eviction::ReportTrimTimes(EntryImpl* entry) { in ReportTrimTimes()
193 Rankings::List Eviction::GetListForEntry(EntryImpl* entry) { in GetListForEntry()
198 EntryImpl* entry = backend_->GetEnumeratedEntry(node, true); in EvictEntry()
309 void Eviction::UpdateRankV2(EntryImpl* entry, bool modified) { in UpdateRankV2()
313 void Eviction::OnOpenEntryV2(EntryImpl* entry) { in OnOpenEntryV2()
[all …]
Dbackend_impl.cc361 EntryImpl* cache_entry = MatchEntry(key, hash, false); in OpenEntry()
401 scoped_refptr<EntryImpl> parent; in CreateEntry()
406 EntryImpl* old_entry = MatchEntry(key, hash, false); in CreateEntry()
410 EntryImpl* parent_entry = MatchEntry(key, hash, true); in CreateEntry()
440 scoped_refptr<EntryImpl> cache_entry(new EntryImpl(this, entry_address)); in CreateEntry()
465 cache_entry.swap(reinterpret_cast<EntryImpl**>(entry)); in CreateEntry()
491 EntryImpl* entry_impl = reinterpret_cast<EntryImpl*>(entry); in DoomEntry()
733 void BackendImpl::UpdateRank(EntryImpl* entry, bool modified) { in UpdateRank()
741 EntryImpl* cache_entry = NULL; in RecoveredEntry()
756 void BackendImpl::InternalDoomEntry(EntryImpl* entry) { in InternalDoomEntry()
[all …]
Dentry_impl.h20 class EntryImpl : public Entry, public base::RefCounted<EntryImpl> {
21 friend class base::RefCounted<EntryImpl>;
32 EntryImpl(BackendImpl* backend, Addr address);
122 ~EntryImpl();
192 DISALLOW_EVIL_CONSTRUCTORS(EntryImpl);
Dsparse_control.h25 class EntryImpl; variable
42 explicit SparseControl(EntryImpl* entry) in SparseControl()
76 static void DeleteChildren(EntryImpl* entry);
148 EntryImpl* entry_; // The sparse entry.
Dsparse_control.cc253 void SparseControl::DeleteChildren(EntryImpl* entry) { in DeleteChildren()
371 EntryImpl* child = static_cast<EntryImpl*>(child_); in OpenChild()
565 EntryImpl* child = static_cast<EntryImpl*>(child_); in InitChildData()
Dstorage_block.h15 class EntryImpl; variable
Dblock_files.h19 class EntryImpl; variable
Drankings.cc225 EntryImpl* entry = backend_->GetOpenEntry(rankings); in GetRanking()
/external/chromium/net/data/cache_tests/dirty_entry2/
Dcontents.txt67 the destructor of EntryImpl and skip the line that clears "pointer")
/external/chromium/net/data/cache_tests/dirty_entry/
Dcontents.txt67 the destructor of EntryImpl and skip the line that clears "pointer")
/external/chromium/net/tools/dump_cache/
Dcache_dumper.cc28 static_cast<disk_cache::EntryImpl*>(entry)->SetTimes(last_used, in CloseEntry()
Dupgrade.cc123 disk_cache::EntryImpl* entry_;