Searched refs:_PyObject_Call (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Include/internal/ |
D | pycore_call.h | 25 PyAPI_FUNC(PyObject *) _PyObject_Call(
|
/external/python/cpython3/Objects/ |
D | call.c | 251 _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()
|
D | typeobject.c | 6706 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/ |
D | valgrind-numpy-scipy.supp | 96 fun:_PyObject_Call
|
D | valgrind-python.supp | 92 fun:_PyObject_Call
|
/external/python/cpython3/Modules/ |
D | signalmodule.c | 1720 result = _PyObject_Call(tstate, Handlers[i].func, arglist, NULL); in _PyErr_CheckSignalsTstate()
|