Searched refs:KlassInfoEntry (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DobjectCountEventSender.hpp31 class KlassInfoEntry;
35 static void send(const KlassInfoEntry* entry, GCId gc_id, jlong timestamp);
H A DobjectCountEventSender.cpp32 void ObjectCountEventSender::send(const KlassInfoEntry* entry, GCId gc_id, jlong timestamp) {
H A DgcTrace.cpp110 virtual void do_cinfo(KlassInfoEntry* entry) {
117 bool should_send_event(const KlassInfoEntry* entry) const {
/openjdk7/hotspot/src/share/vm/memory/
H A DheapInspection.hpp39 // of KlassInfoEntry's
42 // to KlassInfoEntry's and is used to sort
45 class KlassInfoEntry: public CHeapObj<mtInternal> { class in inherits:CHeapObj
47 KlassInfoEntry* _next;
53 KlassInfoEntry(klassOop k, KlassInfoEntry* next) : function in class:KlassInfoEntry
56 KlassInfoEntry* next() { return _next; }
63 int compare(KlassInfoEntry* e1, KlassInfoEntry* e2);
69 // Called for each KlassInfoEntry
[all...]
H A DheapInspection.cpp39 int KlassInfoEntry::compare(KlassInfoEntry* e1, KlassInfoEntry* e2) {
48 void KlassInfoEntry::print_on(outputStream* st) const {
82 KlassInfoEntry* KlassInfoBucket::lookup(const klassOop k) {
83 KlassInfoEntry* elt = _list;
90 elt = new (std::nothrow) KlassInfoEntry(k, list());
99 KlassInfoEntry* elt = _list;
107 KlassInfoEntry* elt = _list;
110 KlassInfoEntry* nex
[all...]

Completed in 44 milliseconds