/external/libmicrohttpd/ |
ChangeLog | 52 mode if shutdown is initiated while connections are active. -CG 91 Fix potential infinite loop on shutdown in multi-threaded mode 317 Signaling n times for shutdown works, but for resume we need to 353 Fix race on shutdown signal with thread pool on non-Linux 435 Updated manual, documenting W32 select/shutdown issue. -CG 445 Disable use of 'shutdown' on W32 always as winsock 476 Removing 'shutdown' calls that happen just before close or 490 If we shutdown connection for reading on POST due to error, 493 not shutdown connections for reading on GET/HEAD/etc. just 509 threads (we then need a pipe for shutdown, but i [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
imaplib.py | 225 read, readline, send, shutdown.
248 def shutdown(self):
member in class:IMAP4 252 self.sock.shutdown(socket.SHUT_RDWR)
528 """Shutdown connection to server.
537 self.shutdown()
1185 def shutdown(self): member in class:IMAP4.IMAP4_SSL 1258 def shutdown(self): member in class:IMAP4_stream [all...] |
ssl.py | 275 s = self._sslobj.shutdown()
281 def shutdown(self, how):
member in class:SSLSocket 283 socket.shutdown(self, how)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
_ssl.c | 13 XXX integrate several "shutdown modes" as suggested in
[all...] |
/external/python/cpython2/Lib/ |
imaplib.py | 235 read, readline, send, shutdown. 261 def shutdown(self): member in class:IMAP4 265 self.sock.shutdown(socket.SHUT_RDWR) 541 """Shutdown connection to server. 550 self.shutdown() 1203 def shutdown(self): member in class:IMAP4.IMAP4_SSL 1276 def shutdown(self): member in class:IMAP4_stream [all...] |
/frameworks/base/core/java/android/os/ |
RecoverySystem.java | 690 rebootWipeUserData(context, false /* shutdown */, context.getPackageName(), 696 rebootWipeUserData(context, false /* shutdown */, reason, false /* force */, 701 public static void rebootWipeUserData(Context context, boolean shutdown) 703 rebootWipeUserData(context, shutdown, context.getPackageName(), false /* force */, 708 public static void rebootWipeUserData(Context context, boolean shutdown, String reason, 710 rebootWipeUserData(context, shutdown, reason, force, false /* wipeEuicc */); 721 * @param shutdown if true, the device will be powered down after 735 public static void rebootWipeUserData(Context context, boolean shutdown, String reason, 763 if (shutdown) { [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
imaplib.py | 225 read, readline, send, shutdown. 248 def shutdown(self): member in class:IMAP4 252 self.sock.shutdown(socket.SHUT_RDWR) 528 """Shutdown connection to server. 537 self.shutdown() 1185 def shutdown(self): member in class:IMAP4.IMAP4_SSL 1258 def shutdown(self): member in class:IMAP4_stream [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
imaplib.py | 225 read, readline, send, shutdown. 248 def shutdown(self): member in class:IMAP4 252 self.sock.shutdown(socket.SHUT_RDWR) 528 """Shutdown connection to server. 537 self.shutdown() 1185 def shutdown(self): member in class:IMAP4.IMAP4_SSL 1258 def shutdown(self): member in class:IMAP4_stream [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
imaplib.py | 225 read, readline, send, shutdown. 248 def shutdown(self): member in class:IMAP4 252 self.sock.shutdown(socket.SHUT_RDWR) 528 """Shutdown connection to server. 537 self.shutdown() 1185 def shutdown(self): member in class:IMAP4.IMAP4_SSL 1258 def shutdown(self): member in class:IMAP4_stream [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
imaplib.py | 225 read, readline, send, shutdown. 248 def shutdown(self): member in class:IMAP4 252 self.sock.shutdown(socket.SHUT_RDWR) 528 """Shutdown connection to server. 537 self.shutdown() 1185 def shutdown(self): member in class:IMAP4.IMAP4_SSL 1258 def shutdown(self): member in class:IMAP4_stream [all...] |
/external/libmojo/mojo/edk/system/ |
node_channel.cc | 199 // ShutDown() may have already been called, in which case |channel_| is null. 204 void NodeChannel::ShutDown() { 213 channel_->ShutDown(); 472 ShutDown(); 774 ShutDown();
|
/external/python/cpython2/Doc/library/ |
socketserver.rst | 69 shutdown. The :class:`ThreadingMixIn` class defines an attribute 202 Handle requests until an explicit :meth:`shutdown` request. Poll for 203 shutdown every *poll_interval* seconds. 208 .. method:: shutdown() 607 server.shutdown()
|
/external/python/cpython3/Lib/asyncio/ |
proactor_events.py | 133 # just close our end. First calling shutdown() seems to 135 if hasattr(self._sock, 'shutdown'): 136 self._sock.shutdown(socket.SHUT_RDWR) 282 self._sock.shutdown(socket.SHUT_WR) 376 self._sock.shutdown(socket.SHUT_WR)
|
/external/python/cpython3/Lib/test/test_asyncio/ |
test_proactor_events.py | 278 self.sock.shutdown.assert_called_with(socket.SHUT_WR) 280 self.assertEqual(self.sock.shutdown.call_count, 1) 290 self.assertFalse(self.sock.shutdown.called) 294 self.sock.shutdown.assert_called_with(socket.SHUT_WR) 314 self.assertFalse(self.sock.shutdown.called)
|
/external/tcpdump/ |
print-sctp.c | 125 { SCTP_SHUTDOWN, "SHUTDOWN" }, 126 { SCTP_SHUTDOWN_ACK, "SHUTDOWN ACK" }, 132 { SCTP_SHUTDOWN_COMPLETE, "SHUTDOWN COMPLETE" }, 319 /* for the abort and shutdown ACK 339 /* For the graceful shutdown we must carry
|
/frameworks/base/core/java/android/hardware/camera2/impl/ |
CameraCaptureSessionImpl.java | 489 // Set up fast shutdown. Possible alternative paths: 490 // - This session is active, so close() below starts the shutdown drain 491 // - This session is mid-shutdown drain, and hasn't yet reached the idle drain listener. 842 * <p>During a shutdown/close, the session waits until all pending sessions are finishe [all...] |
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
WifiControllerTest.java | 283 * When in Client mode, make sure ECM triggers wifi shutdown. 554 // still only 1 shutdown 589 // still only 1 shutdown 625 // still only 1 shutdown [all...] |
/system/core/init/ |
init.cpp | 167 // This is to ensure that init will always and immediately shutdown/reboot, regardless of 170 // In non-thermal-shutdown case, 'shutdown' trigger will be fired to let device specific 176 // action queue. Instead we set this flag and ensure that shutdown happens before the next 509 HandlePowerctlMessage("shutdown,container");
|
/art/tools/dexfuzz/src/dexfuzz/fuzzers/ |
Fuzzer.java | 108 * Make sure this is called to correctly shutdown each Executor's StreamConsumers. 110 public void shutdown() { method in class:Fuzzer 113 executor.shutdown();
|
/cts/tests/tests/media/src/android/media/cts/ |
MediaPlayer2TestBase.java | 127 executor.shutdown(); 183 executor.shutdown(); 239 mExecutor.shutdown();
|
/device/google/marlin/ |
WCNSS_qcom_cfg.ini | 131 #Auto Shutdown wlan : Value in Seconds. 0 means disabled. Max 1 day = 86400 sec 277 # Enabling this feature will put target wow and shutdown pcie link 541 #Auto Shutdown Value in seconds. A value of 0 means Auto shutoff is disabled
|
/device/linaro/bootloader/arm-trusted-firmware/plat/xilinx/zynqmp/pm_service/ |
pm_api_sys.c | 217 * pm_system_shutdown() - PM call to request a system shutdown or restart 218 * @restart Shutdown or restart? 0 for shutdown, 1 for restart
|
/external/boringssl/src/crypto/bio/ |
pair.c | 399 // similar to shutdown(..., SHUT_WR) 407 ret = bio->shutdown; 411 bio->shutdown = (int)num;
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
StreamService.java | 73 * the worker process to be forcibly shutdown and {@link #readItem(long, TimeUnit)}, 142 streamExecutor.shutdown(); 251 // are closed as part of process shutdown and when the process has exited. So to not fail
|
/external/compiler-rt/lib/tsan/tests/rtl/ |
tsan_test_util_posix.cc | 239 SHUTDOWN, 385 if (ev->type == Event::SHUTDOWN) { 425 Event event(Event::SHUTDOWN);
|