Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
D_ssl.c340 static PyTypeObject PySSLContext_Type; variable
350 #define PySSLContext_Check(v) (Py_TYPE(v) == &PySSLContext_Type)
1644 if (PyObject_TypeCheck(value, &PySSLContext_Type)) { in PySSL_set_context()
3510 static PyTypeObject PySSLContext_Type = { variable
4159 if (PyType_Ready(&PySSLContext_Type) < 0) in init_ssl()
4237 (PyObject *)&PySSLContext_Type) != 0) in init_ssl()
/external/python/cpython3/Modules/
D_ssl.c461 static PyTypeObject PySSLContext_Type; variable
2082 if (PyObject_TypeCheck(value, &PySSLContext_Type)) { in PySSL_set_context()
4597 static PyTypeObject PySSLContext_Type = { variable
5720 if (PyType_Ready(&PySSLContext_Type) < 0) in PyInit__ssl()
5805 (PyObject *)&PySSLContext_Type) != 0) in PyInit__ssl()
/external/python/cpython3/Modules/clinic/
D_ssl.c.h372 if ((type == &PySSLContext_Type) && in _ssl__SSLContext()