Home
last modified time | relevance | path

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

/art/runtime/
Ddebugger.cc324 size_t Dbg::alloc_record_count_ = 0; member in art::Dbg
4509 DCHECK_EQ(alloc_record_count_, 0U); in SetAllocTrackingEnabled()
4525 alloc_record_count_ = 0; in SetAllocTrackingEnabled()
4590 if (alloc_record_count_ < alloc_record_max_) { in RecordAllocation()
4591 ++alloc_record_count_; in RecordAllocation()
4604 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) & in HeadIndex()
4619 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_); in DumpRecentAllocations()
4752 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_); in GetRecentAllocations()
Ddebugger.h680 static size_t alloc_record_count_ GUARDED_BY(Locks::alloc_tracker_lock_);