Searched defs:poolName (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/test/gc/6581734/
H A DTest6581734.java44 private String poolName = "CMS"; field in class:Test6581734
60 poolName = pool;
84 if (name.contains(poolName)) {
/openjdk7/jdk/src/share/classes/java/lang/management/
H A DMemoryNotificationInfo.java108 private final String poolName; field in class:MemoryNotificationInfo
144 * @param poolName The name of the memory pool which triggers this notification.
148 public MemoryNotificationInfo(String poolName, argument
151 if (poolName == null) {
152 throw new NullPointerException("Null poolName");
158 this.poolName = poolName;
166 this.poolName = MemoryNotifInfoCompositeData.getPoolName(cd);
178 return poolName;
221 * <td>poolName</t
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DMemoryPoolProxy.java40 private String poolName; field in class:MemoryPoolProxy
46 public MemoryPoolProxy(ProxyClient client, ObjectName poolName) throws java.io.IOException { argument
48 this.pool = client.getMXBean(poolName, MemoryPoolMXBean.class);
49 this.poolName = this.pool.getName();
88 beforeGcUsage = lastGcInfo.getMemoryUsageBeforeGc().get(poolName);
89 afterGcUsage = lastGcInfo.getMemoryUsageAfterGc().get(poolName);
106 beforeGcUsage = lastGcInfo.getMemoryUsageBeforeGc().get(poolName);
107 afterGcUsage = lastGcInfo.getMemoryUsageAfterGc().get(poolName);
115 return new MemoryPoolStat(poolName,
H A DMemoryPoolStat.java31 private String poolName; field in class:MemoryPoolStat
50 this.poolName = name;
65 return poolName;
/openjdk7/jdk/src/share/classes/sun/management/
H A DMemoryImpl.java146 String poolName,
162 new MemoryNotificationInfo(poolName,
145 createNotification(String notifType, String poolName, MemoryUsage usage, long count) argument
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJVM_MANAGEMENT_MIB_IMPL.java125 SnmpString poolName = new SnmpString(minfo.getPoolName());
182 poolName);
644 String poolName) {
659 if (poolName.equals(pool.getName())) return i;
668 String poolName) {
669 final int index = findInCache(handler,poolName);
674 private SnmpOid getJvmMemPoolEntryIndex(String poolName) { argument
676 poolName);
643 findInCache(SnmpTableHandler handler, String poolName) argument
667 getJvmMemPoolEntryIndex(SnmpTableHandler handler, String poolName) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/threadpool/
H A DThreadPoolImpl.java537 private String composeWorkerThreadName(String poolName, String workerName) { argument
539 workerThreadName.append("p: ").append(poolName);
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DMonitor.java1622 public DaemonThreadFactory(String poolName) { argument
1626 namePrefix = "JMX Monitor " + poolName + " Pool [Thread-";
1629 public DaemonThreadFactory(String poolName, ThreadGroup threadGroup) { argument
1631 namePrefix = "JMX Monitor " + poolName + " Pool [Thread-";

Completed in 47 milliseconds