HomeSort by relevance Sort by last modified time
    Searched refs:alloc_record_max_ (Results 1 - 2 of 2) sorted by null

  /art/runtime/gc/
allocation_record.cc 55 alloc_record_max_ = value;
70 } else if (value > alloc_record_max_) {
72 << "' --- should be less than " << alloc_record_max_; local
102 CHECK_LE(recent_record_max_, alloc_record_max_);
239 LOG(INFO) << "Enabling alloc tracker (" << records->alloc_record_max_ << " entries of "
241 << PrettySize(sz * records->alloc_record_max_) << ")";
306 DCHECK_LE(Size(), alloc_record_max_); local
313 DCHECK_LE(Size(), alloc_record_max_); local
allocation_record.h 227 if (entries_.size() == alloc_record_max_) {
238 CHECK_LE(recent_record_max_, alloc_record_max_);
298 size_t alloc_record_max_ GUARDED_BY(Locks::alloc_tracker_lock_) = kDefaultNumAllocRecords;

Completed in 74 milliseconds