Lines Matching refs:records
165 AllocRecordObjectMap* records = heap->GetAllocationRecords(); in SetAllocTrackingEnabled() local
166 if (records == nullptr) { in SetAllocTrackingEnabled()
167 records = new AllocRecordObjectMap; in SetAllocTrackingEnabled()
168 heap->SetAllocationRecords(records); in SetAllocTrackingEnabled()
170 CHECK(records != nullptr); in SetAllocTrackingEnabled()
171 records->SetMaxStackDepth(heap->GetAllocTrackerStackDepth()); in SetAllocTrackingEnabled()
172 size_t sz = sizeof(AllocRecordStackTraceElement) * records->max_stack_depth_ + in SetAllocTrackingEnabled()
174 LOG(INFO) << "Enabling alloc tracker (" << records->alloc_record_max_ << " entries of " in SetAllocTrackingEnabled()
175 << records->max_stack_depth_ << " frames, taking up to " in SetAllocTrackingEnabled()
176 << PrettySize(sz * records->alloc_record_max_) << ")"; in SetAllocTrackingEnabled()
193 AllocRecordObjectMap* records = heap->GetAllocationRecords(); in SetAllocTrackingEnabled() local
194 records->Clear(); in SetAllocTrackingEnabled()