Searched refs:started (Results 1 - 25 of 51) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/event/
H A DVmStatusChangeEvent.java49 * The set of Java Virtual Machines started on MonitoredHost since the
51 * <em>lvmid</em> for each Java Virtual Machine started on the
54 protected Set started; field in class:VmStatusChangeEvent
59 * <em>lvmid</em> for each Java Virtual Machine started on the
69 * @param started the set of Java Virtual Machines started since the
75 Set started, Set terminated) {
78 this.started = started;
97 * Return the set of Java Virtual Machines started sinc
74 VmStatusChangeEvent(MonitoredHost host, Set active, Set started, Set terminated) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTaskListener.java37 public void started(TaskEvent e); method in interface:TaskListener
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/services/
H A DGroupCallback.java35 public void started(Group g); method in interface:GroupCallback
/openjdk7/jdk/test/com/sun/jdi/
H A DMixedSuspendTest.sh45 static volatile boolean started = true;
68 started = false;
70 System.out.println("Debuggee: exitting, started = " + started);
79 if (!started) {
H A DJdbLockTest.sh50 while(sleeper.started == 0) {
63 public static int started = 0;
65 started = 1;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentMarkThread.hpp76 bool started() { return _started; } function in class:ConcurrentMarkThread
83 // initiated (during the initial-mark pause when started() is set)
89 // that started() is set and set in_progress().
90 bool during_cycle() { return started() || in_progress(); }
/openjdk7/jdk/test/java/awt/appletviewer/IOExceptionIfEncodedURLTest/
H A DIOExceptionIfEncodedURLTest.sh78 cat err | grep "the appletviewer started"
79 started=$?
81 echo $started | grep "2"
86 if [ $started = "0" ];
88 else fail "test failed for "${URL}": the appletviewer behaviour is unexpected: "$started", see err file"
/openjdk7/langtools/test/tools/javac/
H A DT6358024.java86 if (tl.started != expect)
88 + "expected " + expect + ", found " + tl.started);
96 public void started(TaskEvent e) { method in class:T6358024.MyTaskListener
98 started++;
103 int started = 0; field in class:T6358024.MyTaskListener
H A DT6395974.java68 public void started(TaskEvent e) { method in class:T6395974.MyTaskListener
H A DT6397286.java49 public void started(TaskEvent e) {
H A DT6361619.java83 public void started(TaskEvent e) { method in class:T6361619.MyTaskListener
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractDataLine.java63 private boolean started = false; field in class:AbstractDataLine
222 if (started && (!isActive())) {
239 // The 'started' variable is false when playback of data stops.
250 return started;
348 * This method sets the started state and generates
351 final void setStarted(boolean started) { argument
353 if (Printer.trace) Printer.trace("> AbstractDataLine: setStarted(" + started + ")");
360 //if (Printer.debug) Printer.debug(" AbstractDataLine: setStarted: this.started: " + this.started);
361 //if (Printer.debug) Printer.debug(" started
[all...]
H A DAbstractMixer.java68 * if any line of this mixer is started
70 private boolean started = false; field in class:AbstractMixer
433 if (!started) {
436 started = true;
487 started = false;
H A DSoftAbstractResampler.java50 boolean started; field in class:SoftAbstractResampler.ModelAbstractResamplerStream
109 started = false;
148 if (!started)
271 started = true;
/openjdk7/jdk/test/java/nio/channels/
H A DTestServers.java57 * other servers are started afterwards, the address/port might get reused
107 private boolean started = false; // whether the server is started field in class:TestServers.AbstractTcpServer
125 * started.
129 if (!started) {
130 throw new IllegalStateException("Not started");
140 * started.
144 if (!started) {
145 throw new IllegalStateException("Not started");
151 * Tells whether the server is started
489 private boolean started = false; // whether the server is started field in class:TestServers.AbstractUdpServer
[all...]
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharUnicode.java94 boolean started = false; field in class:ByteToCharUnicode
121 if (usesMark && !started) { /* Read initial byte-order mark */
162 started = true;
205 started = false;
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DWakeup.java47 volatile boolean started = false; field in class:Wakeup.Sleeper
64 started = true;
144 while (!sleeper.started)
/openjdk7/jdk/src/share/back/
H A Dinvoker.h37 jboolean started; /* Is an invoke happening? */ member in struct:InvokeRequest
/openjdk7/langtools/test/tools/javac/api/
H A DT6357331.java44 public void started(TaskEvent e) {
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/NetworkConnection/src/com/sun/hotspot/igv/connection/
H A DClient.java84 public void started(final Group g) { method in class:Client
89 callback.started(g);
H A DServer.java137 public void started(final Group g) { method in class:Server
141 callback.started(g);
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DMonitoredHostProvider.java158 * @param started a set of Integer objects containing the vmid of
159 * new Vms started since last interval.
163 private void fireVmStatusChangedEvents(Set active, Set started, argument
175 ev = new VmStatusChangeEvent(this, active, started, terminated);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DFiber.java185 * Set to true if this fiber is started asynchronously, to avoid
188 private boolean started; field in class:Fiber
200 * than any of the threads that started it or run a part of tubeline.
244 this.started = true;
252 this.started = true;
487 if(!started)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DDocument.java48 private boolean started=false; field in class:Document
203 if(!started) {
204 started = true;
/openjdk7/jdk/test/sun/jvmstat/monitor/MonitoredVm/
H A DMonitorVmStartTerminate.java66 "Too few sleepers started: "
67 + " started = " + listener.getStarted()
74 + " started = " + listener.getStarted()
83 int started; field in class:SleeperListener
165 * started the targets (note - duplicated allowed and somewhat
182 return started;
201 started += recentlyStarted;

Completed in 57 milliseconds

123