Searched refs:PySSLMemoryBIO_Type (Results 1 - 3 of 3) sorted by relevance
/third_party/python/Modules/clinic/ |
H A D | _ssl.c.h | 727 if (!PyObject_TypeCheck(args[0], get_state_ctx(self)->PySSLMemoryBIO_Type)) { in _ssl__SSLContext__wrap_bio() 728 _PyArg_BadArgument("_wrap_bio", "argument 'incoming'", (get_state_ctx(self)->PySSLMemoryBIO_Type)->tp_name, args[0]); in _ssl__SSLContext__wrap_bio() 732 if (!PyObject_TypeCheck(args[1], get_state_ctx(self)->PySSLMemoryBIO_Type)) { in _ssl__SSLContext__wrap_bio() 733 _PyArg_BadArgument("_wrap_bio", "argument 'outgoing'", (get_state_ctx(self)->PySSLMemoryBIO_Type)->tp_name, args[1]); in _ssl__SSLContext__wrap_bio() 888 if ((type == get_state_type(type)->PySSLMemoryBIO_Type || in _ssl_MemoryBIO() 889 type->tp_init == get_state_type(type)->PySSLMemoryBIO_Type->tp_init) && in _ssl_MemoryBIO() 893 if ((type == get_state_type(type)->PySSLMemoryBIO_Type || in _ssl_MemoryBIO() 894 type->tp_init == get_state_type(type)->PySSLMemoryBIO_Type->tp_init) && in _ssl_MemoryBIO()
|
/third_party/python/Modules/ |
H A D | _ssl.h | 15 PyTypeObject *PySSLMemoryBIO_Type; member
|
H A D | _ssl.c | 355 class _ssl.MemoryBIO "PySSLMemoryBIO *" "get_state_type(type)->PySSLMemoryBIO_Type" 4247 incoming: object(subclass_of="get_state_ctx(self)->PySSLMemoryBIO_Type", type="PySSLMemoryBIO *") 4248 outgoing: object(subclass_of="get_state_ctx(self)->PySSLMemoryBIO_Type", type="PySSLMemoryBIO *") 6216 state->PySSLMemoryBIO_Type = (PyTypeObject *)PyType_FromModuleAndSpec( in sslmodule_init_types() 6219 if (state->PySSLMemoryBIO_Type == NULL) in sslmodule_init_types() 6238 if (PyModule_AddType(module, state->PySSLMemoryBIO_Type)) in sslmodule_init_types() 6288 Py_VISIT(state->PySSLMemoryBIO_Type); in sslmodule_traverse() 6313 Py_CLEAR(state->PySSLMemoryBIO_Type); in sslmodule_clear()
|
Completed in 10 milliseconds