HomeSort by relevance Sort by last modified time
    Searched defs:shutdown (Results 76 - 100 of 1207) sorted by null

1 2 34 5 6 7 8 91011>>

  /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));
  /libcore/ojluni/src/main/java/sun/nio/ch/
AsynchronousChannelGroupImpl.java 67 // group shutdown
68 private final AtomicBoolean shutdown = new AtomicBoolean(); field in class:AsynchronousChannelGroupImpl
214 return shutdown.get();
244 * Shutdown all tasks waiting for I/O events.
251 pool.executor().shutdown();
252 timeoutExecutor.shutdown();
259 public final void shutdown() {
260 if (shutdown.getAndSet(true)) {
261 // already shutdown
264 // if there are channels in the group then shutdown will continu
    [all...]
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
ImageConsumer.java 197 * Shutdown all tasks by blocking on tasks to be completed.
199 public void shutdown(); method in interface:ImageConsumer
  /packages/apps/Dialer/java/com/android/dialer/common/concurrent/
UiThreadExecutor.java 28 * shutdown related APIs are unimplemented.
37 public void shutdown() { method in class:UiThreadExecutor
  /packages/apps/TV/src/com/android/tv/util/
MainThreadExecutor.java 52 public void shutdown() { method in class:MainThreadExecutor
  /prebuilts/go/darwin-x86/src/net/
fd_windows.go 136 func (fd *netFD) shutdown(how int) error { func
137 err := fd.pfd.Shutdown(how)
143 return fd.shutdown(syscall.SHUT_RD)
147 return fd.shutdown(syscall.SHUT_WR)
  /prebuilts/go/linux-x86/src/net/
fd_windows.go 136 func (fd *netFD) shutdown(how int) error { func
137 err := fd.pfd.Shutdown(how)
143 return fd.shutdown(syscall.SHUT_RD)
147 return fd.shutdown(syscall.SHUT_WR)
  /system/core/adb/
socket.h 83 /* shutdown is called by the peer before it goes away.
87 void (*shutdown)(asocket* s) = nullptr; member in struct:asocket
  /art/tools/dexfuzz/src/dexfuzz/executors/
Executor.java 85 public void shutdown() { method in class:Executor
86 outputConsumer.shutdown();
87 errorConsumer.shutdown();
  /art/test/708-jit-cache-churn/src/
JitCacheChurnTest.java 67 private void shutdown() { method in class:JitCacheChurnTest
68 this.executorService.shutdown();
274 concurrentExecution.shutdown();
  /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...]
  /art/test/522-checker-regression-monitor-exit/src/
Main.java 78 pool.shutdown();
  /art/tools/dexfuzz/src/dexfuzz/listeners/
BaseListener.java 32 public void shutdown() { } method in class:BaseListener
  /cts/tests/tests/net/src/android/net/http/cts/
ApacheHttpClientTest.java 50 mWebServer.shutdown();
  /dalvik/dx/tests/127-merge-stress/com/android/dx/merge/
MergeTest.java 102 executor.shutdown();
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
NumericSprite.java 44 public void shutdown(GL10 gl) { method in class:NumericSprite
45 mLabelMaker.shutdown(gl);
  /external/annotation-tools/asmx/test/conform/cases/
unknownattributes.class 
  /external/apache-http/src/org/apache/http/impl/conn/
SingleClientConnManager.java 140 shutdown(); method
228 boolean shutdown = false;
235 shutdown = (tracker == null || // can happen if method is aborted
246 if (shutdown) {
249 uniquePoolEntry.shutdown();
320 // we might have gotten here because of a shutdown trigger
321 // shutdown of the adapter also clears the tracked route
322 sca.shutdown();
372 public void shutdown() {
381 uniquePoolEntry.shutdown();
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
ThreadSafeClientConnManager.java 110 shutdown(); method
239 // because of a shutdown trigger.
240 // Shutdown of the adapter also clears the tracked route.
241 hca.shutdown();
260 public void shutdown() {
261 connectionPool.shutdown();
  /external/autotest/client/cros/audio/
cmd_utils.py 107 def shutdown(self): member in class:_LoggingService
124 atexit.register(_logging_service.shutdown)
  /external/autotest/scheduler/
drones.py 54 def shutdown(self): member in class:SiteDrone
245 def shutdown(self): member in class:_RemoteDrone
246 super(_RemoteDrone, self).shutdown()
  /external/conscrypt/testing/src/main/java/org/conscrypt/javax/net/ssl/
TestSSLSocketPair.java 89 executor.shutdown();
  /external/deqp/framework/delibs/decpp/
deSocket.cpp 108 void Socket::shutdown (void) function in class:de::Socket
111 throw SocketError("Socket shutdown failed");
117 throw SocketError("Socket send channel shutdown failed");
123 throw SocketError("Socket receive channel shutdown failed");

Completed in 591 milliseconds

1 2 34 5 6 7 8 91011>>