Home
last modified time | relevance | path

Searched refs:alloc_record_head_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Ddebugger.cc319 size_t Dbg::alloc_record_head_ = 0; member in art::Dbg
4392 DCHECK_EQ(alloc_record_head_, 0U); in SetAllocTrackingEnabled()
4408 alloc_record_head_ = 0; in SetAllocTrackingEnabled()
4460 if (++alloc_record_head_ == alloc_record_max_) { in RecordAllocation()
4461 alloc_record_head_ = 0; in RecordAllocation()
4465 AllocRecord* record = &recent_allocation_records_[alloc_record_head_]; in RecordAllocation()
4488 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) & in HeadIndex()
4506 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")"; in DumpRecentAllocations()
Ddebugger.h662 static size_t alloc_record_head_ GUARDED_BY(Locks::alloc_tracker_lock_);