Home
last modified time | relevance | path

Searched refs:hostname_obj (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Modules/clinic/
D_ssl.c.h582 int server_side, PyObject *hostname_obj,
593 PyObject *hostname_obj = Py_None; in _ssl__SSLContext__wrap_socket() local
598 PySocketModule.Sock_Type, &sock, &server_side, &hostname_obj, &owner, &session)) { in _ssl__SSLContext__wrap_socket()
601 …return_value = _ssl__SSLContext__wrap_socket_impl(self, sock, server_side, hostname_obj, owner, se… in _ssl__SSLContext__wrap_socket()
619 PyObject *hostname_obj, PyObject *owner,
631 PyObject *hostname_obj = Py_None; in _ssl__SSLContext__wrap_bio() local
636 …yBIO_Type, &incoming, &PySSLMemoryBIO_Type, &outgoing, &server_side, &hostname_obj, &owner, &sessi… in _ssl__SSLContext__wrap_bio()
639 …ssl__SSLContext__wrap_bio_impl(self, incoming, outgoing, server_side, hostname_obj, owner, session… in _ssl__SSLContext__wrap_bio()
/external/python/cpython3/Modules/
D_ssl.c4124 int server_side, PyObject *hostname_obj, in _ssl__SSLContext__wrap_socket_impl() argument
4133 if (hostname_obj != Py_None) { in _ssl__SSLContext__wrap_socket_impl()
4134 if (!PyArg_Parse(hostname_obj, "es", "ascii", &hostname)) in _ssl__SSLContext__wrap_socket_impl()
4162 PyObject *hostname_obj, PyObject *owner, in _ssl__SSLContext__wrap_bio_impl() argument
4171 if (hostname_obj != Py_None) { in _ssl__SSLContext__wrap_bio_impl()
4172 if (!PyArg_Parse(hostname_obj, "es", "ascii", &hostname)) in _ssl__SSLContext__wrap_bio_impl()
/external/python/cpython2/Modules/
D_ssl.c3105 PyObject *hostname_obj, *ssl_sock = Py_None, *res; in context_wrap_socket() local
3112 Py_TYPE(Py_None), &hostname_obj, in context_wrap_socket()