Searched refs:_PyObject_Call (Results 1 – 4 of 4) sorted by relevance
| /third_party/python/Include/internal/ |
| D | pycore_call.h | 25 PyAPI_FUNC(PyObject *) _PyObject_Call(
|
| /third_party/python/Objects/ |
| D | call.c | 276 _PyObject_Call(PyThreadState *tstate, PyObject *callable, in _PyObject_Call() function 317 return _PyObject_Call(tstate, callable, args, kwargs); in PyObject_Call() 325 return _PyObject_Call(tstate, callable, args, kwargs); in PyCFunction_Call() 381 return _PyObject_Call(tstate, callable, args, kwargs); in PyEval_CallObjectWithKeywords() 399 return _PyObject_Call(tstate, callable, args, NULL); in PyObject_CallObject()
|
| D | typeobject.c | 7489 res = _PyObject_Call(tstate, meth, args, kwds); in slot_tp_call() 7729 res = _PyObject_Call(tstate, meth, args, kwds); in slot_tp_init()
|
| /third_party/python/Modules/ |
| D | signalmodule.c | 1835 result = _PyObject_Call(tstate, func, arglist, NULL);
|