Searched refs:SparseControl (Results 1 – 4 of 4) sorted by relevance
/external/chromium/net/disk_cache/ |
D | sparse_control.cc | 144 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 …]
|
D | sparse_control.h | 33 class SparseControl { 43 explicit SparseControl(EntryImpl* entry); 44 ~SparseControl(); 162 net::CompletionCallbackImpl<SparseControl> child_callback_; 172 DISALLOW_COPY_AND_ASSIGN(SparseControl);
|
D | entry_impl.h | 18 class SparseControl; variable 24 friend class SparseControl; variable 246 scoped_ptr<SparseControl> sparse_; // Support for sparse entries.
|
D | entry_impl.cc | 359 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()
|