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

1234567891011

/external/apache-http/src/org/apache/http/
H A DHttpConnection.java57 * shutdown of the connection. Use {@link #shutdown shutdown} instead.
107 public void shutdown() throws IOException; method in interface:HttpConnection
/external/guava/guava-testlib/test/com/google/common/testing/
H A DGcFinalizationTest.java97 final AtomicBoolean shutdown; field in class:GcFinalizationTest.Interruptenator
102 final AtomicBoolean shutdown) {
105 while (!shutdown.get()) {
109 this.shutdown = shutdown;
112 void shutdown() { method in class:GcFinalizationTest.Interruptenator
113 shutdown.set(true);
136 interruptenator.shutdown();
152 interruptenator.shutdown();
168 interruptenator.shutdown();
101 Interruptenator(final Thread interruptee, final AtomicBoolean shutdown) argument
[all...]
/external/jetty/src/java/org/eclipse/jetty/websocket/
H A DWebSocketConnection.java35 void shutdown(); method in interface:WebSocketConnection
/external/vogar/src/vogar/target/
H A DProfiler.java29 public abstract void shutdown(File file); method in class:Profiler
/external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
H A DTestingExecutors.java65 * returned to the caller (unless the executor has been shutdown).
73 * locking overhead on each task submission in order to implement shutdown
91 * Finally, a call to {@code shutdown} or {@code shutdownNow} may result
105 private volatile boolean shutdown; field in class:TestingExecutors.NoOpScheduledExecutorService
107 @Override public void shutdown() { method in class:TestingExecutors.NoOpScheduledExecutorService
108 shutdown = true;
112 shutdown();
117 return shutdown;
121 return shutdown;
/external/apache-http/src/org/apache/http/impl/conn/
H A DSingleClientConnManager.java140 shutdown();
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() { method in class:SingleClientConnManager
381 uniquePoolEntry.shutdown();
440 protected void shutdown() method in class:SingleClientConnManager.PoolEntry
[all...]
H A DDefaultClientConnection.java87 /** True if this connection was shutdown. */
88 private volatile boolean shutdown; field in class:DefaultClientConnection
118 // Check for shutdown after assigning socket, so that
119 if (this.shutdown) {
122 throw new IOException("Connection already shutdown");
151 public void shutdown() throws IOException { method in class:DefaultClientConnection
153 shutdown = true;
155 super.shutdown();
160 } // shutdown
H A DAbstractPooledConnAdapter.java51 * pool entry. {@link #shutdown shutdown} and {@link #close close}
168 public void shutdown() throws IOException { method in class:AbstractPooledConnAdapter
174 conn.shutdown();
/external/apache-http/src/org/apache/http/conn/
H A DClientConnectionManager.java130 void shutdown() method in interface:ClientConnectionManager
/external/boringssl/src/crypto/bio/
H A Dsocket.c95 if (bio->shutdown) {
149 b->shutdown = (int)num;
164 ret = b->shutdown;
167 b->shutdown = (int)num;
H A Dfd.c144 if (bio->shutdown) {
202 b->shutdown = (int)num;
217 ret = b->shutdown;
220 b->shutdown = (int)num;
H A Dbio_mem.c105 /* |shutdown| is used to store the close flag: whether the BIO has ownership
107 bio->shutdown = 1;
122 if (!bio->shutdown || !bio->init || bio->ptr == NULL) {
262 bio->shutdown = (int)num;
272 ret = (long)bio->shutdown;
275 bio->shutdown = (int)num;
H A Dfile.c171 if (!bio->shutdown) {
236 b->shutdown = (int)num & BIO_CLOSE;
242 b->shutdown = (int)num & BIO_CLOSE;
279 ret = (long)b->shutdown;
282 b->shutdown = (int)num;
/external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
H A DIntegrationTestBase.java32 httpclient.getConnectionManager().shutdown();
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
H A DLogManager.java32 * getLoggerRepository(), exists(), getCurrentLoggers(), shutdown() and
79 public static void shutdown() { method in class:LogManager
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/spi/
H A DLoggerRepository.java80 public abstract void shutdown(); method in interface:LoggerRepository
/external/vogar/src/vogar/android/
H A DAndroidProfiler.java33 private final Method shutdown; field in class:AndroidProfiler
49 shutdown = SamplingProfiler.getMethod("shutdown");
96 @Override public void shutdown(File file) { method in class:AndroidProfiler
98 shutdown.invoke(profiler);
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DThreadSafeClientConnManager.java110 shutdown();
239 // because of a shutdown trigger.
241 hca.shutdown();
260 public void shutdown() { method in class:ThreadSafeClientConnManager
261 connectionPool.shutdown();
H A DRefQueueWorker.java68 * This attribute is also used as a shutdown indicator.
95 * after {@link #shutdown shutdown()}. Only one thread can
124 public void shutdown() { method in class:RefQueueWorker
127 this.workerThread = null; // indicate shutdown
/external/mtpd/
H A Dmtpd.h90 /* Handle the shutdown event. */
91 void (*shutdown)(); member in struct:protocol
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DInactivityTimer.java82 void shutdown() { method in class:InactivityTimer
84 inactivityTimer.shutdown();
/external/guava/guava/src/com/google/common/util/concurrent/
H A DForwardingExecutorService.java90 public void shutdown() { method in class:ForwardingExecutorService
91 delegate().shutdown();
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
H A DConnectorAdapter.java122 writer.shutdown();
190 public void shutdown() method in class:ConnectorAdapter.WriterThread
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_network.c60 shutdown(s, SHUT_RDWR);
63 shutdown(s, SD_BOTH);
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DSocksProxyTest.java43 server.shutdown();
44 socksProxy.shutdown();

Completed in 910 milliseconds

1234567891011