Home
last modified time | relevance | path

Searched refs:_PyObject_Call (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Include/internal/
Dpycore_call.h25 PyAPI_FUNC(PyObject *) _PyObject_Call(
/external/python/cpython3/Objects/
Dcall.c251 _PyObject_Call(PyThreadState *tstate, PyObject *callable, in _PyObject_Call() function
292 return _PyObject_Call(tstate, callable, args, kwargs); in PyObject_Call()
300 return _PyObject_Call(tstate, callable, args, kwargs); in PyCFunction_Call()
438 return _PyObject_Call(tstate, callable, args, kwargs); in PyEval_CallObjectWithKeywords()
456 return _PyObject_Call(tstate, callable, args, NULL); in PyObject_CallObject()
Dtypeobject.c6706 res = _PyObject_Call(tstate, meth, args, kwds); in slot_tp_call()
6946 res = _PyObject_Call(tstate, meth, args, kwds); in slot_tp_init()
/external/python/pybind11/tests/
Dvalgrind-numpy-scipy.supp96 fun:_PyObject_Call
Dvalgrind-python.supp92 fun:_PyObject_Call
/external/python/cpython3/Modules/
Dsignalmodule.c1720 result = _PyObject_Call(tstate, Handlers[i].func, arglist, NULL); in _PyErr_CheckSignalsTstate()