Home
last modified time | relevance | path

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

/art/runtime/
Ddebugger.cc390 size_t Dbg::alloc_record_count_ = 0; member in art::Dbg
4854 DCHECK_EQ(alloc_record_count_, 0U); in SetAllocTrackingEnabled()
4870 alloc_record_count_ = 0; in SetAllocTrackingEnabled()
4934 if (alloc_record_count_ < alloc_record_max_) { in RecordAllocation()
4935 ++alloc_record_count_; in RecordAllocation()
4948 return (Dbg::alloc_record_head_ + 1 + Dbg::alloc_record_max_ - Dbg::alloc_record_count_) & in HeadIndex()
4963 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_); in DumpRecentAllocations()
5096 const uint16_t capped_count = CappedAllocRecordCount(Dbg::alloc_record_count_); in GetRecentAllocations()
Ddebugger.h789 static size_t alloc_record_count_ GUARDED_BY(Locks::alloc_tracker_lock_);