Lines Matching refs:heap

262   gc::Heap* const heap = Runtime::Current()->GetHeap();  in VMDebug_countInstancesOfClass()  local
271 heap->CountInstances(classes, countAssignable, &count); in VMDebug_countInstancesOfClass()
280 gc::Heap* const heap = Runtime::Current()->GetHeap(); in VMDebug_countInstancesOfClasses() local
294 heap->CountInstances(classes, countAssignable, &counts[0]); in VMDebug_countInstancesOfClasses()
322 gc::Heap* heap = Runtime::Current()->GetHeap(); in VMDebug_getRuntimeStatInternal() local
325 std::string output = std::to_string(heap->GetGcCount()); in VMDebug_getRuntimeStatInternal()
329 std::string output = std::to_string(NsToMs(heap->GetGcTime())); in VMDebug_getRuntimeStatInternal()
333 std::string output = std::to_string(heap->GetBytesAllocatedEver()); in VMDebug_getRuntimeStatInternal()
337 std::string output = std::to_string(heap->GetBytesFreedEver()); in VMDebug_getRuntimeStatInternal()
341 std::string output = std::to_string(heap->GetBlockingGcCount()); in VMDebug_getRuntimeStatInternal()
345 std::string output = std::to_string(NsToMs(heap->GetBlockingGcTime())); in VMDebug_getRuntimeStatInternal()
350 heap->DumpGcCountRateHistogram(output); in VMDebug_getRuntimeStatInternal()
355 heap->DumpBlockingGcCountRateHistogram(output); in VMDebug_getRuntimeStatInternal()
359 std::string output = std::to_string(heap->GetObjectsAllocated()); in VMDebug_getRuntimeStatInternal()
363 std::string output = std::to_string(heap->GetTotalTimeWaitingForGC()); in VMDebug_getRuntimeStatInternal()
391 gc::Heap* heap = Runtime::Current()->GetHeap(); in VMDebug_getRuntimeStatsInternal() local
393 std::to_string(heap->GetGcCount()))) { in VMDebug_getRuntimeStatsInternal()
397 std::to_string(NsToMs(heap->GetGcTime())))) { in VMDebug_getRuntimeStatsInternal()
401 std::to_string(heap->GetBytesAllocatedEver()))) { in VMDebug_getRuntimeStatsInternal()
405 std::to_string(heap->GetBytesFreedEver()))) { in VMDebug_getRuntimeStatsInternal()
409 std::to_string(heap->GetBlockingGcCount()))) { in VMDebug_getRuntimeStatsInternal()
413 std::to_string(NsToMs(heap->GetBlockingGcTime())))) { in VMDebug_getRuntimeStatsInternal()
418 heap->DumpGcCountRateHistogram(output); in VMDebug_getRuntimeStatsInternal()
426 heap->DumpBlockingGcCountRateHistogram(output); in VMDebug_getRuntimeStatsInternal()