Home | History | Annotate | Download | only in heap

Lines Matching refs:HeapStats

214 // A HeapStats structure keeps track of the amount of memory allocated
218 class HeapStats {
220 HeapStats() : m_totalObjectSpace(0), m_totalAllocatedSpace(0) { }
225 void add(HeapStats* other)
257 bool operator==(const HeapStats& other)
623 void getStats(HeapStats&);
624 HeapStats& stats() { return m_stats; }
625 HeapStats& statsAfterLastGC() { return m_statsAfterLastGC; }
707 HeapStats m_stats;
708 HeapStats m_statsAfterLastGC;