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()
180 meth_reduce(PyCFunctionObject *m, PyObject *Py_UNUSED(ignored)) in meth_reduce()
195 meth_get__text_signature__(PyCFunctionObject *m, void *closure) in meth_get__text_signature__()
201 meth_get__doc__(PyCFunctionObject *m, void *closure) in meth_get__doc__()
207 meth_get__name__(PyCFunctionObject *m, void *closure) in meth_get__name__()
213 meth_get__qualname__(PyCFunctionObject *m, void *closure) in meth_get__qualname__()
247 meth_traverse(PyCFunctionObject *m, visitproc visit, void *arg) in meth_traverse()
256 meth_get__self__(PyCFunctionObject *m, void *closure) in meth_get__self__()
276 #define OFF(x) offsetof(PyCFunctionObject, x)
284 meth_repr(PyCFunctionObject *m) in meth_repr()
298 PyCFunctionObject *a, *b; in meth_richcompare()
308 a = (PyCFunctionObject *)self; in meth_richcompare()
309 b = (PyCFunctionObject *)other; in meth_richcompare()
322 meth_hash(PyCFunctionObject *a) in meth_hash()
337 sizeof(PyCFunctionObject),
340 offsetof(PyCFunctionObject, vectorcall), /* tp_vectorcall_offset */
360 offsetof(PyCFunctionObject, m_weakreflist), /* tp_weaklistoffset */
550 ((PyCFunctionObject*)func)->m_ml->ml_name); in cfunction_call()