HomeSort by relevance Sort by last modified time
    Searched refs:EntryImpl (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/net/disk_cache/blockfile/
webfonts_histogram.h 12 class EntryImpl;
19 void RecordCacheHit(EntryImpl* entry);
20 void RecordEviction(EntryImpl* entry);
eviction.h 15 class EntryImpl;
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);
51 void ReportTrimTimes(EntryImpl* entry);
52 Rankings::List GetListForEntry(EntryImpl* entry);
59 void UpdateRankV2(EntryImpl* entry, bool modified);
60 void OnOpenEntryV2(EntryImpl* entry)
    [all...]
in_flight_backend_io.h 21 class EntryImpl;
61 void CloseEntryImpl(EntryImpl* entry);
62 void DoomEntryImpl(EntryImpl* entry);
65 void ReadData(EntryImpl* entry, int index, int offset, net::IOBuffer* buf,
67 void WriteData(EntryImpl* entry, int index, int offset, net::IOBuffer* buf,
69 void ReadSparseData(EntryImpl* entry, int64 offset, net::IOBuffer* buf,
71 void WriteSparseData(EntryImpl* entry, int64 offset, net::IOBuffer* buf,
73 void GetAvailableRange(EntryImpl* entry, int64 offset, int len, int64* start);
74 void CancelSparseIO(EntryImpl* entry);
75 void ReadyForSparseIO(EntryImpl* entry)
    [all...]
sparse_control.h 25 class EntryImpl;
28 // Basically, sparse IO is directed from EntryImpl to this class, and we split
44 explicit SparseControl(EntryImpl* entry);
77 static void DeleteChildren(EntryImpl* entry);
87 // Opens and closes a child entry. A child entry is a regular EntryImpl object
149 EntryImpl* entry_; // The sparse entry.
150 EntryImpl* child_; // The current child entry.
sparse_control_v3.h 25 class EntryImpl;
28 // Basically, sparse IO is directed from EntryImpl to this class, and we split
44 explicit SparseControl(EntryImpl* entry);
72 static void DeleteChildren(EntryImpl* entry);
87 // Opens and closes a child entry. A child entry is a regular EntryImpl object
147 EntryImpl* entry_; // The sparse entry.
148 EntryImpl* child_; // The current child entry.
backend_impl.h 79 EntryImpl* OpenEntryImpl(const std::string& key);
80 EntryImpl* CreateEntryImpl(const std::string& key);
81 EntryImpl* OpenNextEntryImpl(void** iter);
82 EntryImpl* OpenPrevEntryImpl(void** iter);
114 void UpdateRank(EntryImpl* entry, bool modified);
121 void InternalDoomEntry(EntryImpl* entry);
128 void NotLinked(EntryImpl* entry);
132 void RemoveEntry(EntryImpl* entry);
146 EntryImpl* GetOpenEntry(CacheRankingsBlock* rankings) const;
281 typedef base::hash_map<CacheAddr, EntryImpl*> EntriesMap
    [all...]
entry_impl.cc 39 SyncCallback(disk_cache::EntryImpl* entry, net::IOBuffer* buffer,
53 disk_cache::EntryImpl* entry_;
70 entry_->ReportIOTime(disk_cache::EntryImpl::kAsyncIO, start_);
95 class EntryImpl::UserBuffer {
143 bool EntryImpl::UserBuffer::PreWrite(int offset, int len) {
165 void EntryImpl::UserBuffer::Truncate(int offset) {
175 void EntryImpl::UserBuffer::Write(int offset, IOBuffer* buf, int len) {
207 bool EntryImpl::UserBuffer::PreRead(int eof, int offset, int* len) {
232 int EntryImpl::UserBuffer::Read(int offset, IOBuffer* buf, int len) {
257 void EntryImpl::UserBuffer::Reset()
    [all...]
in_flight_backend_io.cc 66 static_cast<EntryImpl*>(*entry_ptr_)->OnEntryCreated(backend_);
140 void BackendIO::CloseEntryImpl(EntryImpl* entry) {
145 void BackendIO::DoomEntryImpl(EntryImpl* entry) {
159 void BackendIO::ReadData(EntryImpl* entry, int index, int offset,
169 void BackendIO::WriteData(EntryImpl* entry, int index, int offset,
180 void BackendIO::ReadSparseData(EntryImpl* entry, int64 offset,
189 void BackendIO::WriteSparseData(EntryImpl* entry, int64 offset,
198 void BackendIO::GetAvailableRange(EntryImpl* entry, int64 offset, int len,
207 void BackendIO::CancelSparseIO(EntryImpl* entry) {
212 void BackendIO::ReadyForSparseIO(EntryImpl* entry)
    [all...]
backend_impl.cc 351 EntryImpl* entry = OpenEntryImpl(key);
387 EntryImpl* node;
389 EntryImpl* next = OpenNextEntryImpl(&iter);
423 EntryImpl* entry = OpenNextEntryImpl(&iter);
460 EntryImpl* cache_entry = MatchEntry(key, hash, false, Addr(), &error);
469 EntryImpl* BackendImpl::OpenEntryImpl(const std::string& key) {
478 EntryImpl* cache_entry = MatchEntry(key, hash, false, Addr(), &error);
517 EntryImpl* BackendImpl::CreateEntryImpl(const std::string& key) {
525 scoped_refptr<EntryImpl> parent;
531 EntryImpl* old_entry = MatchEntry(key, hash, false, Addr(), &error)
    [all...]
webfonts_histogram.cc 80 void RecordCacheHit(EntryImpl* entry) {
92 void RecordEviction(EntryImpl* entry) {
entry_impl.h 25 class NET_EXPORT_PRIVATE EntryImpl
27 public base::RefCounted<EntryImpl> {
28 friend class base::RefCounted<EntryImpl>;
41 EntryImpl(BackendImpl* backend, Addr address, bool read_only);
67 // Performs the initialization of a EntryImpl that will be added to the
138 // Logs a begin event and enables logging for the EntryImpl. Will also cause
139 // an end event to be logged on destruction. The EntryImpl must have its key
177 virtual ~EntryImpl();
273 DISALLOW_COPY_AND_ASSIGN(EntryImpl);
eviction.cc 169 void Eviction::UpdateRank(EntryImpl* entry, bool modified) {
176 void Eviction::OnOpenEntry(EntryImpl* entry) {
181 void Eviction::OnCreateEntry(EntryImpl* entry) {
188 void Eviction::OnDoomEntry(EntryImpl* entry) {
198 void Eviction::OnDestroyEntry(EntryImpl* entry) {
254 void Eviction::ReportTrimTimes(EntryImpl* entry) {
282 Rankings::List Eviction::GetListForEntry(EntryImpl* entry) {
288 EntryImpl* entry = backend_->GetEnumeratedEntry(node, list);
402 void Eviction::UpdateRankV2(EntryImpl* entry, bool modified) {
406 void Eviction::OnOpenEntryV2(EntryImpl* entry)
    [all...]
entry_impl_v3.cc 493 File* key_file = const_cast<EntryImpl*>(this)->GetBackingFile(address,
548 int EntryImpl::ReadDataImpl(int index, int offset, IOBuffer* buf, int buf_len,
586 int EntryImpl::WriteDataImpl(int index, int offset, IOBuffer* buf, int buf_len,
618 int EntryImpl::ReadSparseDataImpl(int64 offset, IOBuffer* buf, int buf_len,
644 int EntryImpl::WriteSparseDataImpl(int64 offset, IOBuffer* buf, int buf_len,
667 int EntryImpl::GetAvailableRangeImpl(int64 offset, int len, int64* start) {
680 sparse.reset(new SparseControl(const_cast<EntryImpl*>(this)));
726 Log("~EntryImpl in");
767 Trace("~EntryImpl out 0x%p", reinterpret_cast<void*>(this));
772 int EntryImpl::InternalReadData(int index, int offset
    [all...]
backend_impl_v3.cc 140 EntryImpl* parent_entry = MatchEntry(key, hash, true, entry_addr, &error);
443 EntryImpl* cache_entry = MatchEntry(key, hash, false, Addr(), &error);
486 scoped_refptr<EntryImpl> parent;
492 EntryImpl* old_entry = MatchEntry(key, hash, false, Addr(), &error);
496 EntryImpl* parent_entry = MatchEntry(key, hash, true, Addr(), &error);
520 int num_blocks = EntryImpl::NumBlocksForEntry(key.size());
535 scoped_refptr<EntryImpl> cache_entry(
536 new EntryImpl(this, entry_address, false));
582 EntryImpl* entry = OpenEntryImpl(key);
619 EntryImpl* node
    [all...]
sparse_control.cc 187 SparseControl::SparseControl(EntryImpl* entry)
336 void SparseControl::DeleteChildren(EntryImpl* entry) {
466 EntryImpl* child = static_cast<EntryImpl*>(child_);
665 EntryImpl* child = static_cast<EntryImpl*>(child_);
sparse_control_v3.cc 189 SparseControl::SparseControl(EntryImpl* entry)
315 void SparseControl::DeleteChildren(EntryImpl* entry) {
468 EntryImpl* child = static_cast<EntryImpl*>(child_);
753 EntryImpl* child = static_cast<EntryImpl*>(child_);
rankings.cc 601 EntryImpl* entry = backend_->GetOpenEntry(rankings);
  /external/chromium_org/webkit/browser/appcache/
appcache_disk_cache.h 49 class EntryImpl;
78 typedef std::set<EntryImpl*> OpenEntries;
90 void AddOpenEntry(EntryImpl* entry) { open_entries_.insert(entry); }
91 void RemoveOpenEntry(EntryImpl* entry) { open_entries_.erase(entry); }
appcache_disk_cache.cc 50 class AppCacheDiskCache::EntryImpl : public Entry {
52 EntryImpl(disk_cache::Entry* disk_cache_entry,
99 virtual ~EntryImpl() {
109 // while the call is in-flight and to produce an EntryImpl upon completion.
152 *entry = new EntryImpl(entry_ptr_, owner_);
160 *entry_ = new EntryImpl(entry_ptr_, owner_);
  /external/chromium_org/net/tools/dump_cache/
cache_dumper.cc 36 static_cast<disk_cache::EntryImpl*>(entry)->SetTimes(last_used,
upgrade_win.cc 133 disk_cache::EntryImpl* entry_;
  /external/chromium_org/net/disk_cache/
backend_unittest.cc 152 rv = static_cast<disk_cache::EntryImpl*>(entry)->WriteDataImpl(
167 static_cast<disk_cache::EntryImpl*>(entry)->Release();
    [all...]
entry_unittest.cc     [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-utils-3.0.17.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-utils/2.0.5/
plexus-utils-2.0.5.jar 

Completed in 5734 milliseconds

1 2