Searched defs:shutdown (Results 1 - 12 of 12) sorted by relevance

/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DExecutorService.java20 * shutting down an <tt>ExecutorService</tt>. The {@link #shutdown}
64 * pool.shutdown();
79 * first by calling <tt>shutdown</tt> to reject incoming tasks, and then
84 * pool.shutdown(); // Disable new tasks from being submitted
115 * Initiates an orderly shutdown in which previously submitted
131 void shutdown(); method in interface:ExecutorService
168 * either <tt>shutdown</tt> or <tt>shutdownNow</tt> was called first.
175 * Blocks until all tasks have completed execution after a shutdown
H A DExecutors.java50 * prior to shutdown, a new one will take its place if needed to
52 * until it is explicitly {@link ExecutorService#shutdown shutdown}.
72 * execution prior to shutdown, a new one will take its place if
74 * exist until it is explicitly {@link ExecutorService#shutdown
75 * shutdown}.
94 * shutdown, a new one will take its place if needed to execute
175 * shutdown, a new one will take its place if needed to execute
192 * during execution prior to shutdown, a new one will take its
600 public void shutdown() { method in class:Executors.DelegatedExecutorService
[all...]
H A DScheduledThreadPoolExecutor.java66 * 3. Supporting optional run-after-shutdown parameters, which
67 * leads to overrides of shutdown methods to remove and cancel
68 * tasks that should NOT be run after shutdown, as well as
70 * with a shutdown.
79 * False if should cancel/suppress periodic tasks on shutdown.
84 * False if should cancel non-periodic tasks on shutdown.
239 * and run-after-shutdown parameters.
256 * run-after-shutdown parameters.
292 * due to shutdown policy. Invoked within super.shutdown
615 public void shutdown() { method in class:ScheduledThreadPoolExecutor
[all...]
H A DThreadPoolExecutor.java82 * take effect in a timely manner, and a shutdown pool may remain in a
227 * has no remaining threads will be {@code shutdown} automatically. If
229 * if users forget to call {@link #shutdown}, then you must arrange
320 * On invocation of shutdown(), perhaps implicitly in finalize()
414 * unnecessary interrupt storms, especially during shutdown.
418 * also hold mainLock on shutdown and shutdownNow, for the sake of
469 * Handler called when saturated or shutdown in execute.
499 * Permission required for callers of shutdown and shutdownNow.
510 * silently fail. In the case of shutdown, they should not fail
617 * idle worker to ensure that shutdown signal
1309 public void shutdown() { method in class:ThreadPoolExecutor
[all...]
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DConnectionState.java160 protected void shutdown() { method in class:ConnectionState
H A DConnectionStateSSLv3.java348 protected void shutdown() { method in class:ConnectionStateSSLv3
351 super.shutdown();
H A DAlertProtocol.java280 protected void shutdown() { method in class:AlertProtocol
H A DSSLRecordProtocol.java462 protected void shutdown() { method in class:SSLRecordProtocol
470 pendingConnectionState.shutdown();
474 activeReadState.shutdown();
478 activeReadState.shutdown();
H A DHandshakeProtocol.java528 protected void shutdown() { method in class:HandshakeProtocol
H A DSSLEngineImpl.java164 shutdown();
189 shutdown();
498 shutdown();
514 shutdown();
556 // shutdown work will be made after the alert will be sent
565 // shutdown work will be made after the alert will be sent
636 shutdown();
645 shutdown();
740 // shutdown work will be made after the alert will be sent
747 private void shutdown() { method in class:SSLEngineImpl
[all...]
/dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
H A DAbstractExecutorServiceTest.java31 public void shutdown() { shutdown = true; } method in class:AbstractExecutorServiceTest.DirectExecutorService
32 public List<Runnable> shutdownNow() { shutdown = true; return Collections.EMPTY_LIST; }
33 public boolean isShutdown() { return shutdown; }
36 private volatile boolean shutdown = false; field in class:AbstractExecutorServiceTest.DirectExecutorService
/dalvik/vm/jdwp/
H A DJdwpPriv.h58 void (*shutdown)(struct JdwpState* state); member in struct:JdwpTransport
154 (*state->transport->shutdown)(state);

Completed in 213 milliseconds