Searched refs:PySSLSocket (Results 1 – 5 of 5) sorted by relevance
/aosp_15_r20/external/python/cpython3/Modules/clinic/ |
D | _ssl.c.h | 14 _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_get_verified_chain_impl(PySSLSocket *self); 103 _ssl__SSLSocket_get_verified_chain(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_get_verified_chain() 117 _ssl__SSLSocket_get_unverified_chain_impl(PySSLSocket *self); 120 _ssl__SSLSocket_get_unverified_chain(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_get_unverified_chain() 134 _ssl__SSLSocket_shared_ciphers_impl(PySSLSocket *self); 137 _ssl__SSLSocket_shared_ciphers(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_shared_ciphers() [all …]
|
/aosp_15_r20/external/python/cpython3/Modules/ |
D | _ssl.c | 323 } PySSLSocket; typedef 364 static int PySSL_set_owner(PySSLSocket *, PyObject *, void *); 365 static int PySSL_set_session(PySSLSocket *, PyObject *, void *); 443 PySSLSocket *sslsock, PyObject *type, int ssl_errno, in fill_and_set_sslerror() 567 PySSL_ChainExceptions(PySSLSocket *sslsock) { in PySSL_ChainExceptions() 579 PySSL_SetError(PySSLSocket *sslsock, int ret, const char *filename, int lineno) in PySSL_SetError() 718 _ssl_configure_hostname(PySSLSocket *self, const char* server_hostname) in _ssl_configure_hostname() 783 static PySSLSocket * 790 PySSLSocket *self; in newPySSLSocket() 809 self = PyObject_GC_New(PySSLSocket, in newPySSLSocket() [all …]
|
D | _ssl.h | 52 #define get_state_sock(s) (((PySSLSocket *)(s))->ctx->state)
|
/aosp_15_r20/external/python/cpython2/Modules/ |
D | _ssl.c | 338 } 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 …]
|
/aosp_15_r20/external/python/cpython3/Modules/_ssl/ |
D | debughelpers.c | 17 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() 121 PySSLSocket *ssl_obj = NULL; /* ssl._SSLSocket, borrowed ref */ in _PySSL_keylog_callback() 127 ssl_obj = (PySSLSocket *)SSL_get_app_data(ssl); in _PySSL_keylog_callback()
|