Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/clinic/
D_ssl.c.h14 _ssl__SSLSocket_do_handshake_impl(PySSLSocket *self);
17 _ssl__SSLSocket_do_handshake(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_do_handshake()
66 _ssl__SSLSocket_getpeercert_impl(PySSLSocket *self, int binary_mode);
69 _ssl__SSLSocket_getpeercert(PySSLSocket *self, PyObject *const *args, Py_ssize_t nargs) in _ssl__SSLSocket_getpeercert()
93 _ssl__SSLSocket_shared_ciphers_impl(PySSLSocket *self);
96 _ssl__SSLSocket_shared_ciphers(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_shared_ciphers()
110 _ssl__SSLSocket_cipher_impl(PySSLSocket *self);
113 _ssl__SSLSocket_cipher(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_cipher()
127 _ssl__SSLSocket_version_impl(PySSLSocket *self);
130 _ssl__SSLSocket_version(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_version()
[all …]
/external/python/cpython3/Modules/
D_ssl.c447 } PySSLSocket; typedef
493 static int PySSL_set_owner(PySSLSocket *, PyObject *, void *);
494 static int PySSL_set_session(PySSLSocket *, PyObject *, void *);
574 fill_and_set_sslerror(PySSLSocket *sslsock, PyObject *type, int ssl_errno, in fill_and_set_sslerror()
708 PySSL_SetError(PySSLSocket *sslsock, int ret, const char *filename, int lineno) in PySSL_SetError()
820 _ssl_configure_hostname(PySSLSocket *self, const char* server_hostname) in _ssl_configure_hostname()
884 static PySSLSocket *
891 PySSLSocket *self; in newPySSLSocket()
895 self = PyObject_New(PySSLSocket, &PySSLSocket_Type); in newPySSLSocket()
985 _ssl__SSLSocket_do_handshake_impl(PySSLSocket *self) in _ssl__SSLSocket_do_handshake_impl()
[all …]
/external/python/cpython2/Modules/
D_ssl.c338 } PySSLSocket; typedef
343 static PyObject *PySSL_SSLwrite(PySSLSocket *self, PyObject *args);
344 static PyObject *PySSL_SSLread(PySSLSocket *self, PyObject *args);
347 static PyObject *PySSL_peercert(PySSLSocket *self, PyObject *args);
348 static PyObject *PySSL_cipher(PySSLSocket *self);
474 PySSL_SetError(PySSLSocket *obj, int ret, char *filename, int lineno) in PySSL_SetError()
571 static PySSLSocket *
576 PySSLSocket *self; in newPySSLSocket()
580 self = PyObject_New(PySSLSocket, &PySSLSocket_Type); in newPySSLSocket()
680 static PyObject *PySSL_SSLdo_handshake(PySSLSocket *self) in PySSL_SSLdo_handshake()
[all …]