Searched refs:PySSLSocket (Results 1 - 4 of 4) sorted by relevance
/third_party/python/Modules/clinic/ |
H A 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 *sel [all...] |
/third_party/python/Modules/_ssl/ |
H A 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()
|
/third_party/python/Modules/ |
H A D | _ssl.c | 323 } PySSLSocket; typedef 354 class _ssl._SSLSocket "PySSLSocket *" "get_state_type(type)->PySSLSocket_Type" 364 static int PySSL_set_owner(PySSLSocket *, PyObject *, void *); 365 static int PySSL_set_session(PySSLSocket *, PyObject *, void *); 380 /* Get the socket from a PySSLSocket, if it has one */ 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 * [all...] |
H A D | _ssl.h | 52 #define get_state_sock(s) (((PySSLSocket *)(s))->ctx->state)
|
Completed in 5 milliseconds