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.h671 int server_side, PyObject *hostname_obj,
684 PyObject *hostname_obj = Py_None; in _ssl__SSLContext__wrap_socket() local
710 hostname_obj = args[2]; in _ssl__SSLContext__wrap_socket()
727 …return_value = _ssl__SSLContext__wrap_socket_impl(self, sock, server_side, hostname_obj, owner, se… in _ssl__SSLContext__wrap_socket()
745 PyObject *hostname_obj, PyObject *owner,
759 PyObject *hostname_obj = Py_None; in _ssl__SSLContext__wrap_bio() local
790 hostname_obj = args[3]; in _ssl__SSLContext__wrap_bio()
807 …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.c4335 int server_side, PyObject *hostname_obj, in _ssl__SSLContext__wrap_socket_impl() argument
4344 if (hostname_obj != Py_None) { in _ssl__SSLContext__wrap_socket_impl()
4345 if (!PyArg_Parse(hostname_obj, "es", "ascii", &hostname)) in _ssl__SSLContext__wrap_socket_impl()
4373 PyObject *hostname_obj, PyObject *owner, in _ssl__SSLContext__wrap_bio_impl() argument
4382 if (hostname_obj != Py_None) { in _ssl__SSLContext__wrap_bio_impl()
4383 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()