Home
last modified time | relevance | path

Searched refs:SparseControl (Results 1 – 4 of 4) sorted by relevance

/external/chromium/net/disk_cache/
Dsparse_control.cc144 disk_cache::SparseControl::SparseOperation operation) { in GetSparseEventType()
146 case disk_cache::SparseControl::kReadOperation: in GetSparseEventType()
148 case disk_cache::SparseControl::kWriteOperation: in GetSparseEventType()
150 case disk_cache::SparseControl::kGetRangeOperation: in GetSparseEventType()
161 disk_cache::SparseControl::SparseOperation operation, in LogChildOperationEnd()
166 case disk_cache::SparseControl::kReadOperation: in LogChildOperationEnd()
169 case disk_cache::SparseControl::kWriteOperation: in LogChildOperationEnd()
172 case disk_cache::SparseControl::kGetRangeOperation: in LogChildOperationEnd()
186 SparseControl::SparseControl(EntryImpl* entry) in SparseControl() function in disk_cache::SparseControl
193 child_callback_(this, &SparseControl::OnChildIOCompleted)), in SparseControl()
[all …]
Dsparse_control.h33 class SparseControl {
43 explicit SparseControl(EntryImpl* entry);
44 ~SparseControl();
162 net::CompletionCallbackImpl<SparseControl> child_callback_;
172 DISALLOW_COPY_AND_ASSIGN(SparseControl);
Dentry_impl.h18 class SparseControl; variable
24 friend class SparseControl; variable
246 scoped_ptr<SparseControl> sparse_; // Support for sparse entries.
Dentry_impl.cc359 result = sparse_->StartIO(SparseControl::kReadOperation, offset, buf, buf_len, in ReadSparseDataImpl()
373 result = sparse_->StartIO(SparseControl::kWriteOperation, offset, buf, in WriteSparseDataImpl()
474 SparseControl::DeleteChildren(this); in DeleteEntryData()
788 scoped_ptr<SparseControl> sparse; in CouldBeSparse()
789 sparse.reset(new SparseControl(const_cast<EntryImpl*>(this))); in CouldBeSparse()
1346 scoped_ptr<SparseControl> sparse(new SparseControl(this)); in InitSparseData()