Searched refs:heap_summary (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcHeapSummary.hpp68 virtual void visit(const GCHeapSummary* heap_summary) const = 0;
69 virtual void visit(const PSHeapSummary* heap_summary) const {}
H A DgcTraceSend.cpp189 void visit(const GCHeapSummary* heap_summary) const {
190 const VirtualSpaceSummary& heap_space = heap_summary->heap();
197 e.set_heapUsed(heap_summary->used());
220 void GCTracer::send_gc_heap_summary_event(GCWhen::Type when, const GCHeapSummary& heap_summary) const {
222 heap_summary.accept(&visitor);
H A DgcTrace.hpp120 void report_gc_heap_summary(GCWhen::Type when, const GCHeapSummary& heap_summary, const PermGenSummary& perm_gen_summary) const;
133 void send_gc_heap_summary_event(GCWhen::Type when, const GCHeapSummary& heap_summary) const;
H A DgcTrace.cpp164 void GCTracer::report_gc_heap_summary(GCWhen::Type when, const GCHeapSummary& heap_summary, const PermGenSummary& perm_gen_summary) const { argument
167 send_gc_heap_summary_event(when, heap_summary);
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.cpp125 const GCHeapSummary& heap_summary = create_heap_summary(); local
127 gc_tracer->report_gc_heap_summary(when, heap_summary, perm_summary);
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DparallelScavengeHeap.cpp917 VirtualSpaceSummary heap_summary = create_heap_space_summary(); local
918 return PSHeapSummary(heap_summary, used(), old_summary, old_space, young_summary, eden_space, from_space, to_space);
990 const PSHeapSummary& heap_summary = create_ps_heap_summary(); local
992 gc_tracer->report_gc_heap_summary(when, heap_summary, perm_gen_summary);

Completed in 38 milliseconds