Searched refs:shutdown (Results 1 - 23 of 23) sorted by relevance

/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
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...]
H A DConnectionState.java160 protected void shutdown() { method in class:ConnectionState
H A DSSLRecordProtocol.java462 protected void shutdown() { method in class:SSLRecordProtocol
470 pendingConnectionState.shutdown();
474 activeReadState.shutdown();
478 activeReadState.shutdown();
H A DAlertProtocol.java280 protected void shutdown() { method in class:AlertProtocol
H A DConnectionStateSSLv3.java348 protected void shutdown() { method in class:ConnectionStateSSLv3
351 super.shutdown();
H A DHandshakeProtocol.java528 protected void shutdown() { method in class:HandshakeProtocol
/dalvik/libcore/archive/src/test/java/java/util/zip/
H A DDeflaterOutputStreamTest.java75 executor.shutdown();
/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/concurrent/src/test/java/tests/api/java/util/concurrent/
H A DScheduledExecutorTest.java35 try { p1.shutdown(); } catch(SecurityException ok) { return; }
42 try { p1.shutdown(); } catch(SecurityException ok) { return; }
64 try { p1.shutdown(); } catch(SecurityException ok) { return; }
85 try { p1.shutdown(); } catch(SecurityException ok) { return; }
210 * execute throws RejectedExecutionException if shutdown
215 se.shutdown();
228 * schedule throws RejectedExecutionException if shutdown
233 se.shutdown();
244 * schedule callable throws RejectedExecutionException if shutdown
249 se.shutdown();
[all...]
H A DThreadPoolExecutorTest.java132 try { p2.shutdown(); } catch(SecurityException ok) { return; }
286 * isShutDown is false before shutdown, true after
292 try { p1.shutdown(); } catch(SecurityException ok) { return; }
307 try { p1.shutdown(); } catch(SecurityException ok) { return; }
327 try { p1.shutdown(); } catch(SecurityException ok) { return; }
846 * execute throws RejectedExecutionException if shutdown
851 try { tpe.shutdown(); } catch(SecurityException ok) { return; }
861 * execute using CallerRunsPolicy drops task on shutdown
867 try { p.shutdown(); } catch(SecurityException ok) { return; }
880 * execute using DiscardPolicy drops task on shutdown
[all...]
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
H A DExecutorsTest.java359 e.shutdown();
417 e.shutdown();
H A DJSR166TestCase.java306 exec.shutdown();
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_Exec.java113 executorService.shutdown();
134 executorService.shutdown();
/dalvik/vm/jdwp/
H A DJdwpPriv.h58 void (*shutdown)(struct JdwpState* state); member in struct:JdwpTransport
154 (*state->transport->shutdown)(state);
H A DJdwpAdb.c72 shutdown(netState->clientSock, SHUT_RDWR);
76 shutdown(netState->controlSock, SHUT_RDWR);
334 shutdown(clientSock, SHUT_RDWR);
340 shutdown(controlSock, SHUT_RDWR);
H A DJdwpSocket.c212 /* "shutdown" dislodges blocking read() and accept() calls */
214 shutdown(listenSock, SHUT_RDWR);
218 shutdown(clientSock, SHUT_RDWR);
353 // When we call shutdown() on the socket, accept() returns with
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
H A DHttpsURLConnectionTest.java1046 executorService.shutdown();
/dalvik/vm/
H A DJni.c3890 goto shutdown;
3892 LOGV("Attached to wait for shutdown in Destroy\n");
3906 shutdown:
3907 // TODO: call System.exit() to run any registered shutdown hooks
/dalvik/libcore/luni/src/main/native/
H A Dorg_apache_harmony_luni_platform_OSNetworkSystem.cpp86 #define SOCKERR_REMSOCKSHUTDOWN -219 /* The remote socket has shutdown gracefully */
679 return "The remote socket has shutdown gracefully";
2213 int rc = shutdown(fd, how);

Completed in 300 milliseconds