• Home
  • Raw
  • Download

Lines Matching refs:heap

301   gc::Heap* const heap = Runtime::Current()->GetHeap();  in VMDebug_countInstancesOfClass()  local
310 heap->CountInstances(classes, countAssignable, &count); in VMDebug_countInstancesOfClass()
319 gc::Heap* const heap = Runtime::Current()->GetHeap(); in VMDebug_countInstancesOfClasses() local
333 heap->CountInstances(classes, countAssignable, &counts[0]); in VMDebug_countInstancesOfClasses()
369 gc::Heap* const heap = Runtime::Current()->GetHeap(); in VMDebug_getInstancesOfClasses() local
376 heap->GetInstances(hs2, h_class, includeAssignable, /* max_count= */ 0, raw_instances); in VMDebug_getInstancesOfClasses()
409 gc::Heap* heap = Runtime::Current()->GetHeap(); in VMDebug_getHeapSpaceStats() local
412 for (gc::space::ContinuousSpace* space : heap->GetContinuousSpaces()) { in VMDebug_getHeapSpaceStats()
430 for (gc::space::DiscontinuousSpace* space : heap->GetDiscontinuousSpaces()) { in VMDebug_getHeapSpaceStats()
468 gc::Heap* heap = Runtime::Current()->GetHeap(); in VMDebug_getRuntimeStatInternal() local
471 std::string output = std::to_string(heap->GetGcCount()); in VMDebug_getRuntimeStatInternal()
475 std::string output = std::to_string(NsToMs(heap->GetGcTime())); in VMDebug_getRuntimeStatInternal()
479 std::string output = std::to_string(heap->GetBytesAllocatedEver()); in VMDebug_getRuntimeStatInternal()
483 std::string output = std::to_string(heap->GetBytesFreedEver()); in VMDebug_getRuntimeStatInternal()
487 std::string output = std::to_string(heap->GetBlockingGcCount()); in VMDebug_getRuntimeStatInternal()
491 std::string output = std::to_string(NsToMs(heap->GetBlockingGcTime())); in VMDebug_getRuntimeStatInternal()
496 heap->DumpGcCountRateHistogram(output); in VMDebug_getRuntimeStatInternal()
501 heap->DumpBlockingGcCountRateHistogram(output); in VMDebug_getRuntimeStatInternal()
529 gc::Heap* heap = Runtime::Current()->GetHeap(); in VMDebug_getRuntimeStatsInternal() local
531 std::to_string(heap->GetGcCount()))) { in VMDebug_getRuntimeStatsInternal()
535 std::to_string(NsToMs(heap->GetGcTime())))) { in VMDebug_getRuntimeStatsInternal()
539 std::to_string(heap->GetBytesAllocatedEver()))) { in VMDebug_getRuntimeStatsInternal()
543 std::to_string(heap->GetBytesFreedEver()))) { in VMDebug_getRuntimeStatsInternal()
547 std::to_string(heap->GetBlockingGcCount()))) { in VMDebug_getRuntimeStatsInternal()
551 std::to_string(NsToMs(heap->GetBlockingGcTime())))) { in VMDebug_getRuntimeStatsInternal()
556 heap->DumpGcCountRateHistogram(output); in VMDebug_getRuntimeStatsInternal()
564 heap->DumpBlockingGcCountRateHistogram(output); in VMDebug_getRuntimeStatsInternal()