Searched defs:shutdown (Results 1 - 25 of 139) sorted by path

123456

/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/apache-http/src/org/apache/http/conn/
H A DClientConnectionManager.java130 void shutdown() method in interface:ClientConnectionManager
/external/apache-http/src/org/apache/http/impl/
H A DSocketHttpClientConnection.java184 public void shutdown() throws IOException { method in class:SocketHttpClientConnection
H A DSocketHttpServerConnection.java182 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}
168 public void shutdown() throws IOException { method in class:AbstractPooledConnAdapter
174 conn.shutdown();
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 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/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DAbstractConnPool.java282 public void shutdown() { method in class:AbstractConnPool
292 refWorker.shutdown();
H A DConnPoolByRoute.java670 public void shutdown() { method in class:ConnPoolByRoute
675 super.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
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();
/external/chromium-trace/trace-viewer/examples/stream_server/
H A Dstandalone.py457 def shutdown(self): member in class:WebSocketServer
458 """Override SocketServer.BaseServer.shutdown."""
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dstandalone.py453 def shutdown(self): member in class:WebSocketServer
454 """Override SocketServer.BaseServer.shutdown."""
/external/chromium_org/base/synchronization/
H A Dcondition_variable_unittest.cc82 bool shutdown() const; // Check if shutdown has been requested.
137 int shutdown_task_count_; // Number of tasks told to shutdown
153 // First try trivial startup/shutdown.
390 queue.work_is_available()->Broadcast(); // Force check for shutdown.
480 queue.work_is_available()->Broadcast(); // Force check for shutdown.
567 bool WorkQueue::shutdown() const { function in class:base::__anon2490::WorkQueue
726 while (0 == task_count() && !shutdown()) {
731 if (shutdown()) {
732 // Ack the notification of a shutdown messag
[all...]
/external/chromium_org/chrome/browser/net/
H A Dpredictor.h80 // methods are initialization / shutdown related (including preconnect
125 // a version which does a simpler shutdown.
288 void SetShutdown(bool shutdown) { argument
289 shutdown_ = shutdown;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Ddate_widget.js81 self.shutdown();
112 cvox.ChromeVoxHTMLDateWidget.prototype.shutdown = function() {
H A Dinterframe.js91 cvox.Interframe.shutdown = function() {
H A Dmedia_widget.js30 self.shutdown();
41 cvox.ChromeVoxHTMLMediaWidget.prototype.shutdown = function() {
H A Dtime_widget.js36 self.shutdown();
77 cvox.ChromeVoxHTMLTimeWidget.prototype.shutdown = function() {
/external/chromium_org/chrome/browser/safe_browsing/
H A Ddatabase_manager.cc575 void SafeBrowsingDatabaseManager::StopOnIOThread(bool shutdown) { argument
579 if (shutdown) {
H A Dsafe_browsing_service.cc462 void SafeBrowsingService::StopOnIOThread(bool shutdown) { argument
466 database_manager_->StopOnIOThread(shutdown);
468 ui_manager_->StopOnIOThread(shutdown);
494 void SafeBrowsingService::Stop(bool shutdown) { argument
497 base::Bind(&SafeBrowsingService::StopOnIOThread, this, shutdown));
H A Dui_manager.cc59 void SafeBrowsingUIManager::StopOnIOThread(bool shutdown) { argument
62 if (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/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_proxy.cc1632 int KernelProxy::shutdown(int fd, int how) { function in class:nacl_io::KernelProxy
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
H A Dshutdown.c10 int shutdown(int fd, int how) { function

Completed in 640 milliseconds

123456