Lines Matching refs:records
223 AllocRecordObjectMap* records = heap->GetAllocationRecords(); in SetAllocTrackingEnabled() local
224 if (records == nullptr) { in SetAllocTrackingEnabled()
225 records = new AllocRecordObjectMap; in SetAllocTrackingEnabled()
226 heap->SetAllocationRecords(records); in SetAllocTrackingEnabled()
228 CHECK(records != nullptr); in SetAllocTrackingEnabled()
229 records->SetProperties(); in SetAllocTrackingEnabled()
233 records->alloc_ddm_thread_id_ = self->GetTid(); in SetAllocTrackingEnabled()
235 size_t sz = sizeof(AllocRecordStackTraceElement) * records->max_stack_depth_ + in SetAllocTrackingEnabled()
237 LOG(INFO) << "Enabling alloc tracker (" << records->alloc_record_max_ << " entries of " in SetAllocTrackingEnabled()
238 << records->max_stack_depth_ << " frames, taking up to " in SetAllocTrackingEnabled()
239 << PrettySize(sz * records->alloc_record_max_) << ")"; in SetAllocTrackingEnabled()
256 AllocRecordObjectMap* records = heap->GetAllocationRecords(); in SetAllocTrackingEnabled() local
257 records->Clear(); in SetAllocTrackingEnabled()