Searched refs:getCount (Results 1 - 25 of 91) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/java/lang/management/
H A DBufferPoolMXBean.java68 long getCount(); method in interface:BufferPoolMXBean
H A DMemoryNotificationInfo.java168 this.count = MemoryNotifInfoCompositeData.getCount(cd);
205 public long getCount() { method in class:MemoryNotificationInfo
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/
H A DCountStatistic.java37 long getCount(); method in interface:CountStatistic
H A DTimeStatistic.java37 long getCount(); method in interface:TimeStatistic
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCountDownLatch.java173 int getCount() { method in class:CountDownLatch.Sync
306 public long getCount() { method in class:CountDownLatch
307 return sync.getCount();
318 return super.toString() + "[Count = " + sync.getCount() + "]";
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DCharWriter.java45 public int getCount() { method in class:CharWriter
H A DCharReader.java45 public int getCount() { method in class:CharReader
H A DByteInputStream.java52 public int getCount() { method in class:ByteInputStream
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/
H A DMultipartDataSource.java63 public int getCount(); method in interface:MultipartDataSource
/openjdk7/jdk/src/share/classes/sun/misc/
H A DJavaNioAccess.java37 long getCount(); method in interface:JavaNioAccess.BufferPool
/openjdk7/langtools/test/tools/javac/processing/model/util/filter/
H A DTestIterables.java72 int constructorCount = getCount(constructorsIn(irritable));
73 int fieldCount = getCount(fieldsIn(irritable));
74 int methodCount = getCount(methodsIn(irritable));
75 int typeCount = getCount(typesIn(irritable));
101 private int getCount(Iterable<? extends Element> iter) { method in class:TestIterables
/openjdk7/jdk/test/java/net/URLClassLoader/
H A DHttpTest.java49 private static int getCount = 0; field in class:HttpTest.HttpServer
91 getCount++;
165 getCount = 0;
170 public int getCount() { method in class:HttpTest.HttpServer.Counters
172 return getCount;
184 return "GET count: " + getCount + "; " +
213 if (svr.counters().getCount() > 0 ||
224 if (svr.counters().getCount() > 1) {
237 if (svr.counters().getCount() > 1) {
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DUncommonTrapEvent.java49 setCount(Math.max(getCount(), trap.getCount()));
65 public int getCount() { method in class:UncommonTrapEvent
/openjdk7/jdk/test/javax/management/monitor/
H A DCounterMonitorDeadlockTest.java101 int getCount = initGetCount;
103 getCount = observedProxy.getGetCount();
104 if (getCount != initGetCount)
108 if (getCount <= initGetCount)
207 getCount++;
216 return getCount;
220 private volatile int getCount; field in class:CounterMonitorDeadlockTest.Test
H A DGaugeMonitorDeadlockTest.java102 int getCount = initGetCount;
104 getCount = observedProxy.getGetCount();
105 if (getCount != initGetCount)
109 if (getCount <= initGetCount)
208 getCount++;
217 return getCount;
221 private volatile int getCount; field in class:GaugeMonitorDeadlockTest.Test
H A DStringMonitorDeadlockTest.java101 int getCount = initGetCount;
103 getCount = observedProxy.getGetCount();
104 if (getCount != initGetCount)
108 if (getCount <= initGetCount)
207 getCount++;
216 return getCount;
220 private volatile int getCount; field in class:StringMonitorDeadlockTest.Test
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/
H A DCountStatisticImpl.java64 m.put("count", getCount());
69 return super.toString() + NEWLINE + "Count: " + getCount();
72 public synchronized long getCount() { method in class:CountStatisticImpl
H A DTimeStatisticImpl.java57 "Count: " + getCount() + NEWLINE +
83 m.put("count", getCount());
107 public synchronized long getCount() { method in class:TimeStatisticImpl
/openjdk7/jdk/test/sun/rmi/rmic/newrmic/equivalence/
H A DCountInterface.java39 public int getCount() throws RemoteException; method in interface:CountInterface
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLookups.cpp44 if(LE_FAILURE(success) || lookupTableIndex>lookupTableOffsetArrayRef.getCount()) {
55 if(LE_FAILURE(success) || subtableIndex>subTableOffsetArrayRef.getCount()) {
/openjdk7/jdk/src/share/classes/sun/management/
H A DSensor.java82 public long getCount() { method in class:Sensor
166 " count = " + getCount();
H A DMemoryPoolImpl.java193 return usageSensor.getCount();
262 return gcSensor.getCount();
304 getCount());
332 gcSensor.getCount());
/openjdk7/jdk/test/java/lang/management/CompositeData/
H A DMemoryNotifInfoCompositeData.java91 if (info.getCount() != ((Long) values[COUNT]).longValue()) {
92 throw new RuntimeException("count = " + info.getCount() +
116 System.out.println(" Count = " + info.getCount());
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DNewMBeanListenerTest.java81 if (countListener.getCount() == 1)
91 if (countListener.getCount() == 2)
134 public synchronized int getCount() { method in class:NewMBeanListenerTest.CountListener
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DFinalizerSummaryQuery.java69 public long getCount() { method in class:FinalizerSummaryQuery.HistogramElement
121 out.println(elements[j].getCount());

Completed in 47 milliseconds

1234