Searched defs:shutdown (Results 1 - 25 of 84) sorted by relevance

1234

/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/
H A DHttpConnection.java52 * shutdown of the connection. Use {@link #shutdown shutdown} instead.
102 public void shutdown() throws IOException; method in interface:HttpConnection
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DRefQueueWorker.java63 * This attribute is also used as a shutdown indicator.
90 * after {@link #shutdown shutdown()}. Only one thread can
119 public void shutdown() { method in class:RefQueueWorker
122 this.workerThread = null; // indicate shutdown
H A DAbstractConnPool.java277 public void shutdown() { method in class:AbstractConnPool
287 refWorker.shutdown();
/external/libsepol/include/sepol/policydb/
H A Dsidtab.h34 unsigned char shutdown; member in struct:__anon8106
/external/webkit/Source/WebCore/storage/
H A DSQLTransactionCoordinator.cpp108 void SQLTransactionCoordinator::shutdown() function in class:WebCore::SQLTransactionCoordinator
/external/webkit/Source/WebKit/chromium/src/
H A DWebKit.cpp79 void shutdown() function in namespace:WebKit
/external/apache-http/src/org/apache/http/conn/
H A DClientConnectionManager.java125 void shutdown() method in interface:ClientConnectionManager
/external/guava/guava-bootstrap/src/java/util/concurrent/
H A DExecutorService.java17 void shutdown(); method in interface:ExecutorService
/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/jmonkeyengine/engine/src/networking/com/jme3/network/base/
H A DConnectorAdapter.java122 writer.shutdown();
190 public void shutdown() method in class:ConnectorAdapter.WriterThread
/external/kernel-headers/original/linux/
H A Dplatform_device.h50 void (*shutdown)(struct platform_device *); member in struct:platform_driver
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/
H A DSocketHttpClientConnection.java179 public void shutdown() throws IOException { method in class:SocketHttpClientConnection
H A DSocketHttpServerConnection.java177 public void shutdown() throws IOException { method in class:SocketHttpServerConnection
/external/apache-http/src/org/apache/http/impl/conn/
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();
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 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...]
/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 DForwardingExecutorService.java90 public void shutdown() { method in class:ForwardingExecutorService
91 delegate().shutdown();
/external/mtpd/
H A Dmtpd.h62 /* Handle the shutdown event. */
63 void (*shutdown)(); member in struct:protocol
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/
H A DNetscapePluginModule.cpp122 void NetscapePluginModule::shutdown() function in class:WebKit::NetscapePluginModule
171 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/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DInactivityTimer.java82 void shutdown() { method in class:InactivityTimer
84 inactivityTimer.shutdown();

Completed in 833 milliseconds

1234