Searched refs:connect_ex (Results 1 – 17 of 17) sorted by relevance
/external/python/cpython2/Lib/ |
D | ssl.py | 856 def _real_connect(self, addr, connect_ex): argument 865 if connect_ex: 866 rc = socket.connect_ex(self, addr) 884 def connect_ex(self, addr): member in SSLSocket
|
D | asyncore.py | 347 err = self.socket.connect_ex(address)
|
/external/parameter-framework/upstream/test/functional-tests-legacy/Util/ |
D | PfwUnitTestLib.py | 88 while socket.socket().connect_ex(("localhost", int(self.testPlatformBindAddress))) != 0:
|
/external/python/cpython3/Lib/ |
D | ssl.py | 1121 def _real_connect(self, addr, connect_ex): argument 1133 if connect_ex: 1134 rc = super().connect_ex(addr) 1152 def connect_ex(self, addr): member in SSLSocket
|
D | asyncore.py | 333 err = self.socket.connect_ex(address)
|
/external/python/cpython2/Lib/test/ |
D | test_ssl.py | 1374 self.assertEqual(0, s.connect_ex((REMOTE_HOST, 443))) 1389 rc = s.connect_ex((REMOTE_HOST, 443)) 1418 rc = s.connect_ex((REMOTE_HOST, 443)) 1431 rc = s.connect_ex((REMOTE_HOST, 444))
|
/external/python/cpython2/Doc/faq/ |
D | library.rst | 753 You can use the ``connect_ex()`` method to avoid creating an exception. It will 754 just return the errno value. To poll, you can call ``connect_ex()`` again later
|
/external/python/cpython3/Doc/faq/ |
D | library.rst | 774 You can use the ``connect_ex()`` method to avoid creating an exception. It will 775 just return the errno value. To poll, you can call ``connect_ex()`` again later
|
/external/python/cpython3/Lib/test/ |
D | test_ssl.py | 1006 rc = s.connect_ex((HOST, port)) 1866 self.assertEqual(0, s.connect_ex(self.server_addr)) 1878 rc = s.connect_ex(self.server_addr) 2157 rc = s.connect_ex((REMOTE_HOST, 443))
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.2rc1.rst | 763 Add the missing connect_ex() implementation for SSL sockets, and make it
|
D | 2.7.4rc1.rst | 1214 connect_ex() on an SSL socket now returns the original errno when the
|
/external/python/cpython2/Doc/library/ |
D | socket.rst | 586 .. method:: socket.connect_ex(address)
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.0.rst | 676 'hostname', 25 )` also works. :func:`socket.connect_ex` and :func:`socket.bind`
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.0.rst | 676 'hostname', 25 )` also works. :func:`socket.connect_ex` and :func:`socket.bind`
|
/external/python/cpython3/Doc/library/ |
D | socket.rst | 1065 .. method:: socket.connect_ex(address)
|
/external/python/cpython3/Misc/ |
D | HISTORY | 3141 - Issue #19919: Fix flaky SSL test. connect_ex() sometimes returns 9620 - Issue #12065: connect_ex() on an SSL socket now returns the original errno 10020 - Issue #11326: Add the missing connect_ex() implementation for SSL sockets, 26658 - The connect(), connect_ex() and bind() methods for sockets require 29990 - New socket method connect_ex() returns the error code from connect()
|
/external/python/cpython2/Misc/ |
D | HISTORY | 9279 - The connect(), connect_ex() and bind() methods for sockets require 12611 - New socket method connect_ex() returns the error code from connect()
|