Home
last modified time | relevance | path

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

/art/runtime/
Ddebugger.cc389 size_t Dbg::alloc_record_head_ = 0; member in art::Dbg
4853 DCHECK_EQ(alloc_record_head_, 0U); in SetAllocTrackingEnabled()
4869 alloc_record_head_ = 0; in SetAllocTrackingEnabled()
4920 if (++alloc_record_head_ == alloc_record_max_) { in RecordAllocation()
4921 alloc_record_head_ = 0; in RecordAllocation()
4925 AllocRecord* record = &recent_allocation_records_[alloc_record_head_]; in RecordAllocation()
4948 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) & in HeadIndex()
4966 LOG(INFO) << "Tracked allocations, (head=" << alloc_record_head_ << " count=" << count << ")"; in DumpRecentAllocations()
Ddebugger.h788 static size_t alloc_record_head_ GUARDED_BY(Locks::alloc_tracker_lock_);