Home
last modified time | relevance | path

Searched refs:PySSLSocket (Results 1 – 4 of 4) 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()
100 _ssl__SSLSocket_shared_ciphers_impl(PySSLSocket *self);
103 _ssl__SSLSocket_shared_ciphers(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_shared_ciphers()
117 _ssl__SSLSocket_cipher_impl(PySSLSocket *self);
120 _ssl__SSLSocket_cipher(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_cipher()
134 _ssl__SSLSocket_version_impl(PySSLSocket *self);
137 _ssl__SSLSocket_version(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_version()
[all …]
/external/python/cpython3/Modules/_ssl/
Ddebughelpers.c17 PySSLSocket *ssl_obj = NULL; /* ssl._SSLSocket, borrowed ref */ in _PySSL_msg_callback()
23 ssl_obj = (PySSLSocket *)SSL_get_app_data(ssl); in _PySSL_msg_callback()
122 PySSLSocket *ssl_obj = NULL; /* ssl._SSLSocket, borrowed ref */ in _PySSL_keylog_callback()
128 ssl_obj = (PySSLSocket *)SSL_get_app_data(ssl); in _PySSL_keylog_callback()
/external/python/cpython3/Modules/
D_ssl.c476 } PySSLSocket; typedef
522 static int PySSL_set_owner(PySSLSocket *, PyObject *, void *);
523 static int PySSL_set_session(PySSLSocket *, PyObject *, void *);
605 fill_and_set_sslerror(PySSLSocket *sslsock, PyObject *type, int ssl_errno, in fill_and_set_sslerror()
738 PySSL_ChainExceptions(PySSLSocket *sslsock) { in PySSL_ChainExceptions()
750 PySSL_SetError(PySSLSocket *sslsock, int ret, const char *filename, int lineno) in PySSL_SetError()
864 _ssl_configure_hostname(PySSLSocket *self, const char* server_hostname) in _ssl_configure_hostname()
929 static PySSLSocket *
936 PySSLSocket *self; in newPySSLSocket()
940 self = PyObject_New(PySSLSocket, &PySSLSocket_Type); in newPySSLSocket()
[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 …]