Home
last modified time | relevance | path

Searched refs:PyCFuncPtrType_Type (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Modules/_ctypes/
Dctypes.h141 extern PyTypeObject PyCFuncPtrType_Type;
149 #define PyCFuncPtrTypeObject_Check(v) PyObject_TypeCheck(v, &PyCFuncPtrType_Type)
D_ctypes.c2419 PyTypeObject PyCFuncPtrType_Type = { variable
5492 PyCFuncPtrType_Type.tp_base = &PyType_Type; in PyInit__ctypes()
5493 if (PyType_Ready(&PyCFuncPtrType_Type) < 0) in PyInit__ctypes()
5539 Py_TYPE(&PyCFuncPtr_Type) = &PyCFuncPtrType_Type; in PyInit__ctypes()
/external/python/cpython2/Modules/_ctypes/
Dctypes.h181 extern PyTypeObject PyCFuncPtrType_Type;
189 #define PyCFuncPtrTypeObject_Check(v) PyObject_TypeCheck(v, &PyCFuncPtrType_Type)
D_ctypes.c2511 PyTypeObject PyCFuncPtrType_Type = { variable
5729 PyCFuncPtrType_Type.tp_base = &PyType_Type; in init_ctypes()
5730 if (PyType_Ready(&PyCFuncPtrType_Type) < 0) in init_ctypes()
5776 Py_TYPE(&PyCFuncPtr_Type) = &PyCFuncPtrType_Type; in init_ctypes()