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.c490 static PyTypeObject PySSLContext_Type; variable
2197 if (PyObject_TypeCheck(value, &PySSLContext_Type)) { in PySSL_set_context()
4819 static PyTypeObject PySSLContext_Type = { variable
6014 if (PyType_Ready(&PySSLContext_Type) < 0) in PyInit__ssl()
6099 (PyObject *)&PySSLContext_Type) != 0) in PyInit__ssl()
/external/python/cpython3/Modules/clinic/
D_ssl.c.h402 if ((type == &PySSLContext_Type) && in _ssl__SSLContext()