Searched defs:counter (Results 1 - 25 of 84) sorted by relevance

1234

/openjdk7/jdk/test/java/lang/instrument/
H A DRedefineMethodAddInvokeTarget.java27 public void test(int counter) throws Exception { argument
29 (counter == 0 ? "" : counter));
H A DRedefineMethodAddInvokeTarget_1.java27 public void test(int counter) throws Exception { argument
29 (counter == 0 ? "" : counter));
H A DRedefineMethodAddInvokeApp.java56 private static void do_redefine(int counter) throws Exception { argument
57 File f = new File("RedefineMethodAddInvokeTarget_" + counter +
H A DRedefineMethodAddInvokeTarget_2.java27 public void test(int counter) throws Exception { argument
29 (counter == 0 ? "" : counter));
/openjdk7/jdk/src/share/classes/sun/management/counter/
H A DLongCounter.java26 package sun.management.counter;
29 * Interface for a performance counter wrapping a
37 * Get the value of this Long performance counter
H A DStringCounter.java26 package sun.management.counter;
29 * Interface for a performance counter wrapping a <code>String</code> object.
H A DByteArrayCounter.java26 package sun.management.counter;
29 * Interface for performance counter wrapping <code>byte[]</code> objects.
H A DLongArrayCounter.java26 package sun.management.counter;
29 * Interface for performance counter wrapping <code>long[]</code> objects.
H A DCounter.java26 package sun.management.counter;
29 * The base class for a performance counter.
36 * Returns the name of this performance counter
41 * Returns the Units for this performance counter
46 * Returns the Variability for this performance counter
51 * Returns true if this performance counter is a vector
61 * Returns an Object that encapsulates the data value of this counter
66 * Returns <tt>true</tt> if this counter is an internal counter.
71 * Return the flags associated with the counter
[all...]
H A DVariability.java26 package sun.management.counter;
H A DUnits.java26 package sun.management.counter;
108 * @param value an integer representation of counter Units
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInfo.java27 final int counter; field in class:Info
32 Info(int counter, String className, String methodName, int location) { argument
33 this.counter = counter;
/openjdk7/jdk/src/share/classes/sun/management/counter/perf/
H A DInstrumentationException.java26 package sun.management.counter.perf;
H A DByteArrayCounterSnapshot.java26 package sun.management.counter.perf;
28 import sun.management.counter.*;
31 * A snapshot of the perf counter for serialization.
H A DLongArrayCounterSnapshot.java26 package sun.management.counter.perf;
28 import sun.management.counter.*;
31 * A snapshot of the perf counter for serialization.
H A DLongCounterSnapshot.java26 package sun.management.counter.perf;
28 import sun.management.counter.*;
31 * A snapshot of the perf counter for serialization.
50 * Get the value of this Long performance counter
H A DPerfLongCounter.java26 package sun.management.counter.perf;
28 import sun.management.counter.*;
49 * Get the value of this Long performance counter
H A DStringCounterSnapshot.java26 package sun.management.counter.perf;
28 import sun.management.counter.*;
31 * A snapshot of the perf counter for serialization.
/openjdk7/hotspot/test/runtime/7107135/
H A DTest.java40 public static int counter = 1; field in class:Test
43 counter = counter * -1;
44 int i = counter;
45 if(counter < 2) counter += Runner();
H A DTestMT.java40 public static int counter = 1; field in class:TestMT
42 counter = counter * -1;
43 int i = counter;
44 if (counter < 2) counter += Runner();
/openjdk7/jdk/test/java/awt/Multiscreen/WPanelPeerPerf/
H A DWPanelPeerPerf.java61 int counter; field in class:WPanelPeerPerf.Counter
62 Counter() { counter = 0; }
105 ctr.counter++;
156 if (ctr.counter < ITERATIONS_PER_SCREEN * devs.length) {
161 if (ctr.counter < ITERATIONS_PER_SCREEN * devs.length) {
170 System.out.println("Counter reads: " + ctr.counter);
/openjdk7/jdk/test/javax/swing/JSlider/6918861/
H A Dbug6918861.java47 if (ui.counter != 111) {
53 if (ui.counter != 0) {
61 private int counter; field in class:bug6918861.HackedSynthSliderUI
70 counter += 1;
76 counter -= 1;
82 counter += 10;
88 counter -= 10;
94 counter += 100;
100 counter -= 100;
/openjdk7/jdk/src/share/classes/sun/management/
H A DConnectorAddressLink.java37 import sun.management.counter.Units;
38 import sun.management.counter.Counter;
39 import sun.management.counter.perf.PerfInstrumentation;
56 * sun.management.JMXConnectorServer.<counter>.<key>=<value>
60 * counter = index computed by this class which uniquely identifies
78 * JMX remote connector counter (it will be incremented every
81 private static AtomicInteger counter = new AtomicInteger(); field in class:ConnectorAddressLink
140 final int index = counter.getAndIncrement();
/openjdk7/jdk/test/javax/management/monitor/
H A DStartStopTest.java58 static final AtomicInteger counter = new AtomicInteger(); field in class:StartStopTest
77 final int c = counter.incrementAndGet();
/openjdk7/jdk/test/javax/management/remote/mandatory/connection/
H A DIdleTimeoutTest.java131 NotificationCounter(int[] counter, String name) { argument
132 listenerCount=counter;

Completed in 128 milliseconds

1234