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

/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/event/
H A DVmStatusChangeEvent.java57 * The set of Java Virtual Machines terminated on MonitoredHost since the
62 protected Set terminated; field in class:VmStatusChangeEvent
71 * @param terminated the set of Java Virtual Machines terminated since
75 Set started, Set terminated) {
79 this.terminated = terminated;
112 * Return the set of Java Virtual Machines terminated since the last
114 * the <em>lvmid</em> for each Java Virtual Machine terminated on the
118 * of each Java Virtual Machine terminated o
74 VmStatusChangeEvent(MonitoredHost host, Set active, Set started, Set terminated) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DServerCommunicatorAdmin.java60 * <ul><code>true</code> if the connection is already being terminated,
69 if (terminated) {
76 return terminated;
83 * <ul><code>true</code> if the connection is already being terminated,
98 return terminated;
118 if (terminated) {
122 terminated = true;
141 while(!terminated) {
144 while(!terminated && currentJobs != 0) {
153 if (terminated) retur
224 private boolean terminated = false; field in class:ServerCommunicatorAdmin
[all...]
H A DServerNotifForwarder.java324 if (terminated) {
328 terminated = true;
350 if (terminated) {
351 throw new IOException("The connection has been terminated.");
490 private boolean terminated = false; field in class:ServerNotifForwarder
/openjdk7/jdk/test/java/nio/file/Files/walkFileTree/
H A DTerminateWalk.java36 static boolean terminated; field in class:TerminateWalk
39 if (terminated)
42 terminated = true;
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/tasks/
H A DThreadService.java126 if (terminated == true) {
130 terminated = true;
168 while(!terminated) {
182 // terminated ?
210 if (terminated) {
211 throw new IllegalStateException("The thread service has been terminated.");
237 private boolean terminated = false; field in class:ThreadService
/openjdk7/jdk/test/java/nio/channels/AsynchronousChannelGroup/
H A DBasic.java72 boolean terminated = group.awaitTermination(3, TimeUnit.SECONDS);
73 if (!terminated)
74 throw new RuntimeException("Group should have terminated");
76 throw new RuntimeException("Executor should have terminated");
105 boolean terminated = group.awaitTermination(3, TimeUnit.SECONDS);
106 if (!terminated)
107 throw new RuntimeException("Group should have terminated");
109 throw new RuntimeException("Executor should have terminated");
141 boolean terminated = group.awaitTermination(3, TimeUnit.SECONDS);
142 if (!terminated)
[all...]
H A DGroupOfOne.java139 boolean terminated = group.awaitTermination(5, TimeUnit.SECONDS);
140 if (!terminated)
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DMonitoredHostProvider.java160 * @param terminated a set of Integer objects containing the vmid of
161 * terminated Vms since last interval.
164 Set terminated) {
175 ev = new VmStatusChangeEvent(this, active, started, terminated);
212 // JVM has terminated, remove it from the active list
163 fireVmStatusChangedEvents(Set active, Set started, Set terminated) argument
/openjdk7/jdk/test/sun/jvmstat/monitor/MonitoredVm/
H A DMonitorVmStartTerminate.java73 "Started count != terminated count: "
75 + " terminated = " + listener.getTerminated());
84 int terminated; field in class:SleeperListener
116 + " target possibly terminated?");
186 return terminated;
202 terminated += recentlyTerminated;
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/rmi/
H A DMonitoredHostProvider.java245 * @param terminated Set of Integer objects containing the local
246 * Vm Identifiers of terminated JVMs since last
250 Set terminated) {
261 ev = new VmStatusChangeEvent(this, active, started, terminated);
331 // JVM has terminated, remove it from the active list
249 fireVmStatusChangedEvents(Set active, Set started, Set terminated) argument
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJvmThreadInstanceEntryImpl.java63 public final static byte terminated = (byte)0x04; // bit 6 field in class:JvmThreadInstanceEntryImpl.ThreadStateMap.Byte0
102 setBit(bitmap,0,Byte0.terminated);
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnector.java251 if (terminated) {
363 if (terminated || !connected) {
385 if (terminated) {
444 // allows to do close after setting the flag "terminated" to true.
454 if (terminated) {
460 terminated = true;
490 " RMI Notification client terminated.");
1482 if (!terminated) {
1483 terminated = true;
1825 terminated
2552 private transient boolean terminated; field in class:RMIConnector
[all...]
H A DRMIConnectionImpl.java219 if (terminated) {
220 if (debug) logger.debug("close",idstr + " already terminated.");
226 terminated = true;
1277 // terminated (timeout elapsed).
1712 private boolean terminated = false; field in class:RMIConnectionImpl
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DThreadPoolExecutor.java119 * excess threads will be terminated if they have been idle for more
242 * entries. Additionally, method {@link #terminated} can be overridden
244 * Executor has fully terminated.
345 * TIDYING: All tasks have terminated, workerCount is zero,
347 * will run the terminated() hook method
348 * TERMINATED: terminated() has completed
363 * When the terminated() hook method has completed
704 terminated();
1440 * completely terminated. This method may be useful for
1446 * @return true if terminating but not yet terminated
2000 protected void terminated() { } method in class:ThreadPoolExecutor
[all...]
/openjdk7/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DThrowingTasks.java178 @Override protected void terminated() { method in class:ThrowingTasks.CheckingExecutor

Completed in 101 milliseconds