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

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/
H A DPartitions.cpp45 void Partitions::shutdown() function in class:blink::Partitions
50 (void) m_renderingAllocator.shutdown();
51 (void) m_objectModelAllocator.shutdown();
H A DPartitions.h42 static void shutdown();
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
H A Dshutdown.c10 int shutdown(int fd, int how) { function
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DWTF.cpp48 // WTF, and Blink in general, cannot handle being re-initialized, even if shutdown first.
59 void shutdown() function in namespace:WTF
64 Partitions::shutdown();
84 void Partitions::shutdown() function in class:WTF::Partitions
87 m_bufferAllocator.shutdown();
H A DWTF.h43 WTF_EXPORT void shutdown();
49 static void shutdown();
/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/chromium_org/third_party/WebKit/Source/core/
H A DInit.cpp116 void CoreInitializer::shutdown() function in class:blink::CoreInitializer
120 ScriptStreamerThread::shutdown();
121 HTMLParserThread::shutdown();
123 // Make sure we stop WorkerThreads before Partition::shutdown() which frees ExecutionContext.
126 Partitions::shutdown();
H A DInit.h43 static void shutdown();
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLParserThreadTest.cpp18 HTMLParserThread::shutdown();
H A DHTMLParserThread.h43 static void shutdown();
45 // It is an error to call shared() before init() or after shutdown();
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DPlatform.cpp43 void Platform::shutdown() function in class:blink::Platform
H A DWebPrerenderingSupport.cpp44 void WebPrerenderingSupport::shutdown() function in class:blink::WebPrerenderingSupport
/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/chromium_org/content/browser/renderer_host/
H A Drender_sandbox_host_linux.cc40 PCHECK(0 == shutdown(renderer_socket_, SHUT_RD)) << "shutdown";
45 PCHECK(0 == shutdown(browser_socket, SHUT_WR)) << "shutdown";
/external/chromium_org/content/shell/tools/plugin/Tests/
H A DNPDeallocateCalledBeforeNPShutdown.cpp79 registerNPShutdownFunction(shutdown); variable
94 static void shutdown() function in class:NPDeallocateCalledBeforeNPShutdown
101 static PluginTest::Register<NPDeallocateCalledBeforeNPShutdown> npRuntimeObjectFromDestroyedPlugin("np-deallocate-called-before-np-shutdown");
/external/chromium_org/third_party/WebKit/Source/platform/testing/
H A DRunAllTests.cpp67 blink::Partitions::shutdown();
69 blink::Heap::shutdown();
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebPrerenderingSupport.h43 BLINK_PLATFORM_EXPORT static void shutdown();
/external/chromium_org/third_party/WebKit/public/web/
H A DWebKit.h44 // non-null and must remain valid until the current thread calls shutdown.
49 // non-null and must remain valid until the current thread calls shutdown.
58 // Once shutdown, the Platform passed to initialize will no longer
62 BLINK_EXPORT void shutdown();
64 // Once shutdown, the Platform passed to initializeWithoutV8 will no longer
/external/chromium_org/third_party/boringssl/src/crypto/bio/
H A Dsocket.c82 if (bio->shutdown) {
136 b->shutdown = (int)num;
149 ret = b->shutdown;
152 b->shutdown = (int)num;
/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...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebKit.cpp180 void shutdown() function in namespace:blink
186 // the shutdown() is called.
209 // Detach the main thread before starting the shutdown sequence
210 // so that the main thread won't get involved in a GC during the shutdown.
221 CoreInitializer::shutdown();
222 Scheduler::shutdown();
223 Heap::shutdown();
224 WTF::shutdown();
225 Platform::shutdown();
226 WebPrerenderingSupport::shutdown();
[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 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...]
/external/apache-http/src/org/apache/http/conn/
H A DClientConnectionManager.java130 void shutdown() method in interface:ClientConnectionManager
/external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
H A DIntegrationTestBase.java32 httpclient.getConnectionManager().shutdown();

Completed in 3864 milliseconds

1234567891011>>