Lines Matching refs:PyCFunctionObject
78 PyCFunctionObject *op = NULL; in PyCMethod_New()
93 op = (PyCFunctionObject *)om; in PyCMethod_New()
101 op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type); in PyCMethod_New()
161 meth_dealloc(PyCFunctionObject *m) in meth_dealloc()
176 meth_reduce(PyCFunctionObject *m, PyObject *Py_UNUSED(ignored)) in meth_reduce()
193 meth_get__text_signature__(PyCFunctionObject *m, void *closure) in meth_get__text_signature__()
199 meth_get__doc__(PyCFunctionObject *m, void *closure) in meth_get__doc__()
205 meth_get__name__(PyCFunctionObject *m, void *closure) in meth_get__name__()
211 meth_get__qualname__(PyCFunctionObject *m, void *closure) in meth_get__qualname__()
246 meth_traverse(PyCFunctionObject *m, visitproc visit, void *arg) in meth_traverse()
255 meth_get__self__(PyCFunctionObject *m, void *closure) in meth_get__self__()
275 #define OFF(x) offsetof(PyCFunctionObject, x)
283 meth_repr(PyCFunctionObject *m) in meth_repr()
297 PyCFunctionObject *a, *b; in meth_richcompare()
307 a = (PyCFunctionObject *)self; in meth_richcompare()
308 b = (PyCFunctionObject *)other; in meth_richcompare()
321 meth_hash(PyCFunctionObject *a) in meth_hash()
336 sizeof(PyCFunctionObject),
339 offsetof(PyCFunctionObject, vectorcall), /* tp_vectorcall_offset */
359 offsetof(PyCFunctionObject, m_weakreflist), /* tp_weaklistoffset */
545 ((PyCFunctionObject*)func)->m_ml->ml_name); in cfunction_call()