Searched refs:GcInfo (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/management/
H A DGarbageCollectorMXBean.java45 * This method returns a {@link GcInfo}.
51 * The mapped type of <tt>GcInfo</tt> is <tt>CompositeData</tt>
52 * with attributes specified in {@link GcInfo#from GcInfo}.
54 * @return a <tt>GcInfo</tt> object representing
58 public GcInfo getLastGcInfo();
H A DGarbageCollectionNotificationInfo.java48 * <li>A {@link GcInfo} object containing some statistics about the GC cycle
93 private final GcInfo gcInfo;
112 * @param gcInfo a GcInfo object providing statistics about the GC cycle
117 GcInfo gcInfo) {
177 public GcInfo getGcInfo() {
H A DGcInfo.java55 * <tt>GcInfo</tt> is a {@link CompositeData CompositeData}
61 * <tt>GcInfo</tt> is mapped to a {@link CompositeData CompositeData}
67 public class GcInfo implements CompositeData, CompositeDataView { class in inherits:CompositeData,CompositeDataView
77 private GcInfo(GcInfoBuilder builder, method in class:GcInfo
97 private GcInfo(CompositeData cd) { method in class:GcInfo
181 * Returns a <tt>GcInfo</tt> object represented by the
217 * represent a <tt>GcInfo</tt> object with the attributes
220 * @return a <tt>GcInfo</tt> object represented by <tt>cd</tt>
223 public static GcInfo from(CompositeData cd) {
231 return new GcInfo(c
[all...]
/openjdk7/jdk/test/com/sun/management/GarbageCollectorMXBean/
H A DLastGCInfo.java37 import com.sun.management.GcInfo;
50 GcInfo info = gc.getLastGcInfo();
59 throw new RuntimeException("No GcInfo returned");
64 private static void checkGcInfo(String name, GcInfo info) throws Exception {
93 throw new RuntimeException("GcInfo does not contain " +
H A DGarbageCollectionNotificationContentTest.java38 import com.sun.management.GcInfo;
132 GcInfo info = notif.getGcInfo();
158 throw new RuntimeException("GcInfo does not contain " +
H A DGarbageCollectionNotificationTest.java38 import com.sun.management.GcInfo;
/openjdk7/jdk/src/share/classes/sun/management/
H A DGarbageCollectorImpl.java34 import com.sun.management.GcInfo;
96 public GcInfo getLastGcInfo() {
97 GcInfo info = getGcInfoBuilder().getLastGcInfo();
130 GcInfo gcInfo) {
H A DGcInfoCompositeData.java44 import com.sun.management.GcInfo;
50 * A CompositeData for GcInfo for the local management support.
55 private final GcInfo info;
59 public GcInfoCompositeData(GcInfo info,
67 public GcInfo getGcInfo() {
71 public static CompositeData toCompositeData(final GcInfo info) {
75 Class cl = Class.forName("com.sun.management.GcInfo");
91 Class cl = Class.forName("com.sun.management.GcInfo");
180 Method m = GcInfo.class.getMethod("getMemoryUsageBeforeGc");
269 "Unexpected composite type for GcInfo");
[all...]
H A DGarbageCollectionNotifInfoCompositeData.java29 import com.sun.management.GcInfo;
68 Class cl = Class.forName("com.sun.management.GcInfo");
173 public static GcInfo getGcInfo(CompositeData cd) {
175 return GcInfo.from(gcInfoData);
H A DGcInfoBuilder.java38 import com.sun.management.GcInfo;
50 // the CompositeType for the GcInfo could be different.
71 // lazily build the CompositeType for the GcInfo
76 GcInfo getLastGcInfo() {
93 // Returns the CompositeType for the GcInfo including
99 // First, fill with the attributes in the GcInfo
191 * Returns the last GcInfo
199 private native GcInfo getLastGcInfo0(GarbageCollectorMXBean gc,
/openjdk7/jdk/test/java/lang/management/GarbageCollectorMXBean/
H A DGcInfoCompositeType.java37 import com.sun.management.GcInfo;
83 Method[] methods = GcInfo.class.getMethods();
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DMemoryPoolProxy.java32 import com.sun.management.GcInfo;
44 private GcInfo lastGcInfo;
/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DProxyExceptions.java37 import com.sun.management.GcInfo;
H A DProxyTypeMapping.java40 import com.sun.management.GcInfo;
236 GcInfo info = sunGc.getLastGcInfo();
243 private static void printGcInfo(GcInfo info) throws Exception {
H A DValidateOpenTypes.java42 import com.sun.management.GcInfo;
278 GcInfo info = GcInfo.from(cd);

Completed in 48 milliseconds