< prev index next >

src/share/vm/memory/heapInspection.hpp

Print this page

        

*** 279,290 **** private: static const int _histo_initial_size = 1000; KlassInfoTable *_cit; GrowableArray<KlassInfoEntry*>* _elements; GrowableArray<KlassInfoEntry*>* elements() const { return _elements; } - const char* _title; - const char* title() const { return _title; } static int sort_helper(KlassInfoEntry** e1, KlassInfoEntry** e2); void print_elements(outputStream* st) const; void print_class_stats(outputStream* st, bool csv_format, const char *columns); julong annotations_bytes(Array<AnnotationArray*>* p) const; const char *_selected_columns; --- 279,288 ----
*** 338,348 **** // add a leading space for separation. return w + 1; } public: ! KlassInfoHisto(KlassInfoTable* cit, const char* title); ~KlassInfoHisto(); void add(KlassInfoEntry* cie); void print_histo_on(outputStream* st, bool print_class_stats, bool csv_format, const char *columns); void sort(); }; --- 336,346 ---- // add a leading space for separation. return w + 1; } public: ! KlassInfoHisto(KlassInfoTable* cit); ~KlassInfoHisto(); void add(KlassInfoEntry* cie); void print_histo_on(outputStream* st, bool print_class_stats, bool csv_format, const char *columns); void sort(); };
< prev index next >