Lines Matching refs:heap
109 VLOG(heap) << "Start SweepAllocationRecords()"; in SweepAllocationRecords()
137 VLOG(heap) << "Deleted " << count_deleted << " allocation records"; in SweepAllocationRecords()
138 VLOG(heap) << "Updated " << count_moved << " allocation records"; in SweepAllocationRecords()
158 Heap* heap = Runtime::Current()->GetHeap(); in SetAllocTrackingEnabled() local
162 if (heap->IsAllocTrackingEnabled()) { in SetAllocTrackingEnabled()
165 AllocRecordObjectMap* records = heap->GetAllocationRecords(); in SetAllocTrackingEnabled()
168 heap->SetAllocationRecords(records); in SetAllocTrackingEnabled()
171 records->SetMaxStackDepth(heap->GetAllocTrackerStackDepth()); in SetAllocTrackingEnabled()
181 heap->SetAllocTrackingEnabled(true); in SetAllocTrackingEnabled()
188 if (!heap->IsAllocTrackingEnabled()) { in SetAllocTrackingEnabled()
191 heap->SetAllocTrackingEnabled(false); in SetAllocTrackingEnabled()
193 AllocRecordObjectMap* records = heap->GetAllocationRecords(); in SetAllocTrackingEnabled()
230 Heap* const heap = Runtime::Current()->GetHeap(); in RecordAllocation() local
231 if (!heap->IsAllocTrackingEnabled()) { in RecordAllocation()
249 if (!heap->IsAllocTrackingEnabled()) { in RecordAllocation()