Home
last modified time | relevance | path

Searched refs:has_timeout (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Modules/
D_ssl.c993 int has_timeout; in _ssl__SSLSocket_do_handshake_impl() local
1010 has_timeout = (timeout > 0); in _ssl__SSLSocket_do_handshake_impl()
1011 if (has_timeout) in _ssl__SSLSocket_do_handshake_impl()
1026 if (has_timeout) in _ssl__SSLSocket_do_handshake_impl()
2258 int has_timeout; in _ssl__SSLSocket_write_impl() local
2283 has_timeout = (timeout > 0); in _ssl__SSLSocket_write_impl()
2284 if (has_timeout) in _ssl__SSLSocket_write_impl()
2312 if (has_timeout) in _ssl__SSLSocket_write_impl()
2397 int has_timeout; in _ssl__SSLSocket_read_impl() local
2447 has_timeout = (timeout > 0); in _ssl__SSLSocket_read_impl()
[all …]
Dsocketmodule.c812 int has_timeout = (timeout > 0); in sock_call_ex() local
825 if (has_timeout || connect) { in sock_call_ex()
826 if (has_timeout) { in sock_call_ex()
3982 int has_timeout = (s->sock_timeout > 0); in sock_sendall() local
3999 if (has_timeout) { in sock_sendall()
/external/python/httplib2/python3/httplib2/
D__init__.py55 def has_timeout(timeout): function
1159 if has_timeout(self.timeout):
1287 if has_timeout(self.timeout):
/external/python/httplib2/python2/httplib2/
D__init__.py132 def has_timeout(timeout): # python 2.6 function
1186 if has_timeout(self.timeout):
1354 if has_timeout(self.timeout):
/external/python/cpython2/Modules/
Dsocketmodule.c786 int has_timeout = s->sock_timeout > 0.0; \
787 if (has_timeout) { \
794 if (!has_timeout || \