Searched defs:alloc_record_head_ (Results 1 - 1 of 1) sorted by relevance

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

Completed in 43 milliseconds