HomeSort by relevance Sort by last modified time
    Searched refs:shutdown (Results 101 - 125 of 1699) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
AgentTest.java 121 public void shutdown() {
151 agent.shutdown();
176 agent.shutdown();
189 agent.shutdown();
206 public void shutdown() throws Exception {
217 agent.shutdown();
229 agent.shutdown();
370 public void shutdown() {
  /external/mockito/src/test/java/org/mockitousage/bugs/
ShouldNotDeadlockAnswerExecutionTest.java 39 threads.shutdown();
66 threads.shutdown();
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/controller/
ContentProviderController.java 74 public ContentProviderController<T> shutdown() { method in class:ContentProviderController
75 contentProvider.shutdown();
  /external/testng/src/main/java/org/testng/remote/strprotocol/
AbstractRemoteTestRunnerClient.java 67 private synchronized void shutdown() { method in class:AbstractRemoteTestRunnerClient
111 shutdown(); method
203 m_messageHub.shutDown();
235 // shutdown();
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
InactivityTimer.java 82 void shutdown() { method in class:InactivityTimer
84 inactivityTimer.shutdown();
  /frameworks/base/cmds/bootanimation/iot/
iotbootanimation_main.cpp 73 void shutdown() override {
89 mBootAction->shutdown();
  /frameworks/base/core/java/android/app/
IUiAutomationConnection.aidl 52 oneway void shutdown();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
GlobalActionsComponent.java 85 public void shutdown() { method in class:GlobalActionsComponent
87 mBarService.shutdown();
  /frameworks/base/services/core/java/com/android/server/
SystemServerInitThreadPool.java 75 static synchronized void shutdown() { method
77 sInstance.mService.shutdown();
88 throw new IllegalStateException("Cannot shutdown. Unstarted tasks "
92 Slog.d(TAG, "Shutdown successful");
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
RequestServicer.java 46 * prepare, send, and shutdown requests.
85 do {} while (!cio.shutdown());
100 * we'll just shutdown.
102 cio.shutdown();
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
RequestServicer.java 46 * prepare, send, and shutdown requests.
85 do {} while (!cio.shutdown());
100 * we'll just shutdown.
102 cio.shutdown();
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestScheduledExecutorService.java 43 private boolean shutdown; field in class:TestScheduledExecutorService
46 public void shutdown() { method in class:TestScheduledExecutorService
47 this.shutdown = true;
52 this.shutdown = true;
57 assertTrue("Executor wasn't shut down.", shutdown);
62 return shutdown;
  /art/runtime/jdwp/
jdwp_adb.cc 81 shutdown(clientSock, SHUT_RDWR);
85 shutdown(control_sock_, SHUT_RDWR);
96 virtual void Shutdown() REQUIRES(!state_lock_) {
109 shutdown(local_clientSock, SHUT_RDWR);
113 shutdown(control_sock, SHUT_RDWR);
269 if (control_sock >= 0 && shutdown(control_sock, SHUT_RDWR)) {
  /external/boringssl/src/crypto/bio/
bio_mem.c 108 // |shutdown| is used to store the close flag: whether the BIO has ownership
110 bio->shutdown = 1;
125 if (!bio->shutdown || !bio->init || bio->ptr == NULL) {
261 bio->shutdown = (int)num;
271 ret = (long)bio->shutdown;
274 bio->shutdown = (int)num;
file.c 136 if (!bio->shutdown) {
201 b->shutdown = (int)num & BIO_CLOSE;
207 b->shutdown = (int)num & BIO_CLOSE;
244 ret = (long)b->shutdown;
247 b->shutdown = (int)num;
  /external/strace/tests/
nlattr_inet_diag_msg.c 190 static const uint8_t shutdown = 0xcd; local
193 sizeof(shutdown), &shutdown, sizeof(shutdown),
194 printf("%u", shutdown));
  /external/strace/tests-m32/
nlattr_inet_diag_msg.c 190 static const uint8_t shutdown = 0xcd; local
193 sizeof(shutdown), &shutdown, sizeof(shutdown),
194 printf("%u", shutdown));
  /external/strace/tests-mx32/
nlattr_inet_diag_msg.c 190 static const uint8_t shutdown = 0xcd; local
193 sizeof(shutdown), &shutdown, sizeof(shutdown),
194 printf("%u", shutdown));
  /external/syslinux/gpxe/src/net/infiniband/
ib_cmrc.c 88 /** Shutdown process */
89 struct process shutdown; member in struct:ib_cmrc_connection
102 * This shutdown process will run some time after the call to
106 * The shutdown process holds an implicit reference on the CMRC
108 * shutdown process has run.
112 container_of ( process, struct ib_cmrc_connection, shutdown );
123 process_del ( &cmrc->shutdown );
141 /* Schedule shutdown process */
142 process_add ( &cmrc->shutdown );
390 process_init_stopped ( &cmrc->shutdown, ib_cmrc_shutdown
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/
ObexServerSockets.java 35 * Call {@link #shutdown(boolean)} to terminate the accept threads created by the call to
57 /* Handles to the accept threads. Needed for shutdown. */
233 shutdown(false);
236 Log.d(mTag, "onAcceptFailed() calling shutdown...");
246 public synchronized void shutdown(boolean block) { method in class:ObexServerSockets
248 Log.d(mTag, "shutdown(block = " + block + ")");
251 mRfcommThread.shutdown();
254 mL2capThread.shutdown();
268 Log.i(mTag, "shutdown() interrupted, continue waiting...", e);
280 * shutdown. When the remote disconnect, this thread shall be restarted t
381 public void shutdown() { method in class:ObexServerSockets.SocketAcceptThread
    [all...]
  /packages/apps/Camera2/src/com/android/camera/device/
SingleDeviceStateMachine.java 208 shutdown(); method
257 shutdown(); method
277 shutdown(); method
299 // TODO: Consider performing a shutdown if there is no open
327 shutdown(); method
361 private void shutdown() { method in class:SingleDeviceStateMachine
375 mLogger.w("Shutdown was called multiple times!");
  /art/tools/dexfuzz/src/dexfuzz/executors/
Executor.java 85 public void shutdown() { method in class:Executor
86 outputConsumer.shutdown();
87 errorConsumer.shutdown();
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
Agent.java 72 agent.shutdown();
178 * Shutdown the agent again.
180 public void shutdown() { method in class:Agent
185 output.shutdown();
  /external/python/cpython3/Lib/concurrent/futures/
thread.py 17 # pool (i.e. shutdown() was not called). However, allowing workers to die with
19 # - The workers would still be running during interpreter shutdown,
74 # - The executor that owns the worker has been shutdown.
109 raise RuntimeError('cannot schedule new futures after shutdown')
138 def shutdown(self, wait=True): member in class:ThreadPoolExecutor
145 shutdown.__doc__ = _base.Executor.shutdown.__doc__
  /external/python/futures/concurrent/futures/
thread.py 25 # pool (i.e. shutdown() was not called). However, allowing workers to die with
27 # - The workers would still be running during interpretor shutdown,
83 # - The executor that owns the worker has been shutdown.
124 raise RuntimeError('cannot schedule new futures after shutdown')
153 def shutdown(self, wait=True): member in class:ThreadPoolExecutor
160 shutdown.__doc__ = _base.Executor.shutdown.__doc__

Completed in 466 milliseconds

1 2 3 45 6 7 8 91011>>