Searched refs:PyCFunctionObject (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython2/Objects/ |
D | methodobject.c | 10 static PyCFunctionObject *free_list = NULL; 19 PyCFunctionObject *op; in PyCFunction_NewEx() 22 free_list = (PyCFunctionObject *)(op->m_self); in PyCFunction_NewEx() 27 op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type); in PyCFunction_NewEx() 47 return ((PyCFunctionObject *)op) -> m_ml -> ml_meth; in PyCFunction_GetFunction() 57 return ((PyCFunctionObject *)op) -> m_self; in PyCFunction_GetSelf() 67 return ((PyCFunctionObject *)op) -> m_ml -> ml_flags; in PyCFunction_GetFlags() 73 PyCFunctionObject* f = (PyCFunctionObject*)func; in PyCFunction_Call() 131 meth_dealloc(PyCFunctionObject *m) in meth_dealloc() 147 meth_get__doc__(PyCFunctionObject *m, void *closure) in meth_get__doc__() [all …]
|
/external/python/cpython3/Objects/ |
D | methodobject.c | 13 static PyCFunctionObject *free_list = NULL; 69 PyCFunctionObject *op; in PyCFunction_NewEx() 72 free_list = (PyCFunctionObject *)(op->m_self); in PyCFunction_NewEx() 77 op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type); in PyCFunction_NewEx() 125 meth_dealloc(PyCFunctionObject *m) in meth_dealloc() 144 meth_reduce(PyCFunctionObject *m, PyObject *Py_UNUSED(ignored)) in meth_reduce() 161 meth_get__text_signature__(PyCFunctionObject *m, void *closure) in meth_get__text_signature__() 167 meth_get__doc__(PyCFunctionObject *m, void *closure) in meth_get__doc__() 173 meth_get__name__(PyCFunctionObject *m, void *closure) in meth_get__name__() 179 meth_get__qualname__(PyCFunctionObject *m, void *closure) in meth_get__qualname__() [all …]
|
D | call.c | 588 result = _PyMethodDef_RawFastCallDict(((PyCFunctionObject*)func)->m_ml, in _PyCFunction_FastCallDict() 749 ((PyCFunctionObject*)func)->m_ml->ml_name); in cfunction_call_varargs()
|
D | abstract.c | 843 strcmp(((PyCFunctionObject *)v)->m_ml->ml_name, "print") == 0) in binary_op()
|
/external/python/cpython3/Include/ |
D | methodobject.h | 35 (((PyCFunctionObject *)func) -> m_ml -> ml_meth) 37 (((PyCFunctionObject *)func) -> m_ml -> ml_flags & METH_STATIC ? \ 38 NULL : ((PyCFunctionObject *)func) -> m_self) 40 (((PyCFunctionObject *)func) -> m_ml -> ml_flags) 104 } PyCFunctionObject; typedef
|
/external/python/cpython2/Include/ |
D | methodobject.h | 30 (((PyCFunctionObject *)func) -> m_ml -> ml_meth) 32 (((PyCFunctionObject *)func) -> m_self) 34 (((PyCFunctionObject *)func) -> m_ml -> ml_flags) 86 } PyCFunctionObject; typedef
|
/external/python/cpython2/Modules/ |
D | _lsprof.c | 168 PyCFunctionObject *fn; in normalizeUserObj() 176 fn = (PyCFunctionObject *)obj; in normalizeUserObj() 465 ((PyCFunctionObject *)arg)->m_ml, in profiler_callback() 477 ((PyCFunctionObject *)arg)->m_ml); in profiler_callback()
|
/external/python/cpython3/Modules/ |
D | _lsprof.c | 107 PyCFunctionObject *fn; in normalizeUserObj() 115 fn = (PyCFunctionObject *)obj; in normalizeUserObj() 412 ((PyCFunctionObject *)arg)->m_ml, in profiler_callback() 424 ((PyCFunctionObject *)arg)->m_ml); in profiler_callback()
|
/external/python/cffi/c/ |
D | lib_obj.c | 38 PyCFunctionObject *fo; in _cpyextfunc_get() 46 fo = (PyCFunctionObject *)x; in _cpyextfunc_get()
|
/external/python/pybind11/include/pybind11/ |
D | pybind11.h | 387 PyCFunctionObject *func = (PyCFunctionObject *) m_ptr; in NAMESPACE_BEGIN()
|
/external/python/cpython2/Python/ |
D | ceval.c | 4254 return ((PyCFunctionObject*)func)->m_ml->ml_name; in PyEval_GetFuncName() 4289 ((PyCFunctionObject *)func)->m_ml->ml_name, in err_args() 4294 ((PyCFunctionObject *)func)->m_ml->ml_name, in err_args()
|
/external/python/cpython3/Python/ |
D | ceval.c | 4888 return ((PyCFunctionObject*)func)->m_ml->ml_name; in PyEval_GetFuncName()
|