Home
last modified time | relevance | path

Searched refs:GetTotalMemory (Results 1 – 5 of 5) sorted by relevance

/art/runtime/gc/
Dheap_test.cc33 int64_t total_memory_before = heap->GetTotalMemory(); in TEST_F()
36 int64_t total_memory_after = heap->GetTotalMemory(); in TEST_F()
Dheap.h329 int64_t GetTotalMemory() const;
333 return GetTotalMemory() - num_bytes_allocated_; in GetFreeMemory()
Dheap.cc1281 const size_t total_memory = GetTotalMemory(); in CollectGarbageInternal()
1762 << PrettySize(GetTotalMemory()) << "; " << GetObjectsAllocated() << " objects\n"; in DumpForSigQuit()
1767 return static_cast<size_t>(100.0f * static_cast<float>(GetFreeMemory()) / GetTotalMemory()); in GetPercentFree()
2131 int64_t Heap::GetTotalMemory() const { in GetTotalMemory() function in art::gc::Heap
/art/runtime/native/
Djava_lang_Runtime.cc83 return Runtime::Current()->GetHeap()->GetTotalMemory(); in Runtime_totalMemory()
/art/runtime/
Ddebugger.cc3161 JDWP::Append4BE(bytes, heap->GetTotalMemory()); // Current heap size in bytes. in DdmSendHeapInfo()