• Home
  • Raw
  • Download

Lines Matching refs:PySSLErrorObject

79 static PyObject *PySSLErrorObject;  variable
710 PyObject *type = PySSLErrorObject; in PySSL_SetError()
810 fill_and_set_sslerror(NULL, PySSLErrorObject, errcode, errstr, lineno, errcode); in _setSSLError()
1042 PyErr_SetString(PySSLErrorObject, in _ssl__SSLSocket_do_handshake_impl()
1046 PyErr_SetString(PySSLErrorObject, in _ssl__SSLSocket_do_handshake_impl()
1250 PyErr_SetString(PySSLErrorObject, "failed to allocate BIO"); in _get_peer_alt_names()
1610 PyErr_SetString(PySSLErrorObject, "failed to allocate BIO"); in _decode_certificate()
1761 PyErr_SetString(PySSLErrorObject, in _ssl__test_decode_cert_impl()
1767 PyErr_SetString(PySSLErrorObject, in _ssl__test_decode_cert_impl()
1774 PyErr_SetString(PySSLErrorObject, in _ssl__test_decode_cert_impl()
2293 PyErr_SetString(PySSLErrorObject, in _ssl__SSLSocket_write_impl()
2297 PyErr_SetString(PySSLErrorObject, in _ssl__SSLSocket_write_impl()
2328 PyErr_SetString(PySSLErrorObject, in _ssl__SSLSocket_write_impl()
2598 PyErr_SetString(PySSLErrorObject, in _ssl__SSLSocket_shutdown_impl()
3068 PyErr_SetString(PySSLErrorObject, in _ssl__SSLContext_impl()
3176 PyErr_SetString(PySSLErrorObject, in _ssl__SSLContext_set_ciphers_impl()
3388 PyErr_SetString(PySSLErrorObject, in get_verify_mode()
4658 PyErr_SetString(PySSLErrorObject, in _ssl_MemoryBIO_impl()
4772 PyErr_SetString(PySSLErrorObject, in _ssl_MemoryBIO_write_impl()
5117 PyErr_SetObject(PySSLErrorObject, v); in PySSL_RAND()
5192 PyErr_SetString(PySSLErrorObject, in _ssl_RAND_egd_impl()
5761 PySSLErrorObject = PyType_FromSpec(&sslerror_type_spec); in PyInit__ssl()
5762 if (PySSLErrorObject == NULL) in PyInit__ssl()
5766 bases = Py_BuildValue("OO", PySSLErrorObject, PyExc_ValueError); in PyInit__ssl()
5775 PySSLErrorObject, NULL); in PyInit__ssl()
5778 PySSLErrorObject, NULL); in PyInit__ssl()
5781 PySSLErrorObject, NULL); in PyInit__ssl()
5784 PySSLErrorObject, NULL); in PyInit__ssl()
5787 PySSLErrorObject, NULL); in PyInit__ssl()
5795 if (PyDict_SetItemString(d, "SSLError", PySSLErrorObject) != 0 in PyInit__ssl()