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

123456789

/external/apache-http/src/org/apache/http/
H A DHttpConnection.java52 * shutdown of the connection. Use {@link #shutdown shutdown} instead.
102 public void shutdown() throws IOException; method in interface:HttpConnection
/external/guava/guava-tests/test/com/google/common/testing/
H A DGcFinalizationTest.java83 final AtomicBoolean shutdown; field in class:GcFinalizationTest.Interruptenator
88 final AtomicBoolean shutdown) {
91 while (!shutdown.get()) {
95 this.shutdown = shutdown;
98 void shutdown() { method in class:GcFinalizationTest.Interruptenator
99 shutdown.set(true);
122 interruptenator.shutdown();
138 interruptenator.shutdown();
154 interruptenator.shutdown();
87 Interruptenator(final Thread interruptee, final AtomicBoolean shutdown) argument
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebKit.h42 // and must remain valid until the current thread calls shutdown.
45 // Once shutdown, the WebKitClient passed to initialize will no longer be
49 WEBKIT_API void shutdown();
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
H A DNPDeallocateCalledBeforeNPShutdown.cpp71 registerNPShutdownFunction(shutdown);
86 static void shutdown() function in class:NPDeallocateCalledBeforeNPShutdown
93 static PluginTest::Register<NPDeallocateCalledBeforeNPShutdown> npRuntimeObjectFromDestroyedPlugin("np-deallocate-called-before-np-shutdown");
/external/apache-http/src/org/apache/http/conn/
H A DClientConnectionManager.java125 void shutdown() method in interface:ClientConnectionManager
/external/mtpd/
H A Dmtpd.h62 /* Handle the shutdown event. */
63 void (*shutdown)(); member in struct:protocol
/external/webkit/Source/WebCore/rendering/
H A DRenderImageResourceStyleImage.cpp56 void RenderImageResourceStyleImage::shutdown() function in class:WebCore::RenderImageResourceStyleImage
H A DRenderImageResource.cpp54 void RenderImageResource::shutdown() function in class:WebCore::RenderImageResource
/external/apache-http/src/org/apache/http/impl/conn/
H A DSingleClientConnManager.java135 shutdown();
223 boolean shutdown = false;
230 shutdown = (tracker == null || // can happen if method is aborted
241 if (shutdown) {
244 uniquePoolEntry.shutdown();
315 // we might have gotten here because of a shutdown trigger
316 // shutdown of the adapter also clears the tracked route
317 sca.shutdown();
367 public void shutdown() { method in class:SingleClientConnManager
376 uniquePoolEntry.shutdown();
435 protected void shutdown() method in class:SingleClientConnManager.PoolEntry
[all...]
H A DDefaultClientConnection.java82 /** True if this connection was shutdown. */
83 private volatile boolean shutdown; field in class:DefaultClientConnection
113 // Check for shutdown after assigning socket, so that
114 if (this.shutdown) {
117 throw new IOException("Connection already shutdown");
146 public void shutdown() throws IOException { method in class:DefaultClientConnection
148 shutdown = true;
150 super.shutdown();
155 } // shutdown
H A DAbstractPooledConnAdapter.java51 * pool entry. {@link #shutdown shutdown} and {@link #close close}
163 public void shutdown() throws IOException { method in class:AbstractPooledConnAdapter
169 conn.shutdown();
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractService.java45 private final Transition shutdown = new Transition(); field in class:AbstractService
54 * If true, the user requested a shutdown while the service was still starting
73 * This method should be used to initiate service shutdown. The invocation
75 * during this method's run, or after it has returned. If shutdown fails, the
80 * shutdown, even when {@link #stop} is called multiple times.
109 shutdown.set(State.TERMINATED);
124 return shutdown;
185 shutdown.set(State.TERMINATED);
204 shutdown.setException(new Exception(
207 shutdown
[all...]
H A DMoreExecutors.java55 * adding a shutdown hook to wait for their completion.
85 * does so by using daemon threads and adding a shutdown hook to wait for
116 * Add a shutdown hook to wait for thread completion in the given
119 * shutdown, instead giving these daemon threads a chance to terminate
136 // is undefined in shutdown hooks.
137 // This is because the logging code installs a shutdown hook of its
139 service.shutdown();
151 * adding a shutdown hook to wait for their completion.
172 * and adding a shutdown hook to wait for their completion.
197 * executor has been shutdown)
247 private boolean shutdown = false; field in class:MoreExecutors.SameThreadExecutorService
270 public void shutdown() { method in class:MoreExecutors.SameThreadExecutorService
429 public void shutdown() { method in class:MoreExecutors.ListeningDecorator
[all...]
H A DForwardingExecutorService.java90 public void shutdown() { method in class:ForwardingExecutorService
91 delegate().shutdown();
/external/kernel-headers/original/linux/
H A Dsysdev.h34 int (*shutdown)(struct sys_device *); member in struct:sysdev_class
69 int (*shutdown)(struct sys_device *); member in struct:sysdev_driver
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DThreadSafeClientConnManager.java105 shutdown();
234 // because of a shutdown trigger.
236 hca.shutdown();
255 public void shutdown() { method in class:ThreadSafeClientConnManager
256 connectionPool.shutdown();
/external/openssl/crypto/bio/
H A Dbss_fd.c132 if (a->shutdown)
195 b->shutdown=(int)num;
209 ret=b->shutdown;
212 b->shutdown=(int)num;
H A Dbss_sock.c123 if (a->shutdown)
178 b->shutdown=(int)num;
192 ret=b->shutdown;
195 b->shutdown=(int)num;
H A Dbss_mem.c121 bi->shutdown=1;
131 if (a->shutdown)
238 b->shutdown=(int)num;
249 ret=(long)b->shutdown;
252 b->shutdown=(int)num;
H A Dbss_acpt.c140 bi->shutdown=1;
175 shutdown(c->accept_sock,2);
189 if (a->shutdown)
392 b->shutdown=(int)num;
421 ret=b->shutdown;
424 b->shutdown=(int)num;
/external/webkit/Source/WebCore/storage/
H A DSQLTransactionCoordinator.h52 void shutdown();
/external/webkit/Source/WebKit/android/wds/
H A DConnection.h42 shutdown(m_fd, SHUT_RDWR);
/external/webkit/Source/WebKit/chromium/src/
H A DWebKit.cpp79 void shutdown() function in namespace:WebKit
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DInactivityTimer.java82 void shutdown() { method in class:InactivityTimer
84 inactivityTimer.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

Completed in 618 milliseconds

123456789