Lines Matching defs:callargs
102 PyObject *callargs, PyObject *kwdict, int use_tracing);
5349 PyObject *func, *callargs, *kwargs = NULL, *result;
5367 callargs = POP();
5369 if (!PyTuple_CheckExact(callargs)) {
5370 if (check_args_iterable(tstate, func, callargs) < 0) {
5371 Py_DECREF(callargs);
5374 Py_SETREF(callargs, PySequence_Tuple(callargs));
5375 if (callargs == NULL) {
5379 assert(PyTuple_CheckExact(callargs));
5381 result = do_call_core(tstate, func, callargs, kwargs, cframe.use_tracing);
5383 Py_DECREF(callargs);
7321 PyObject *callargs,
7329 C_TRACE(result, PyObject_Call(func, callargs, kwdict));
7333 Py_ssize_t nargs = PyTuple_GET_SIZE(callargs);
7342 PyObject *self = PyTuple_GET_ITEM(callargs, 0);
7350 &_PyTuple_ITEMS(callargs)[1],
7357 return PyObject_Call(func, callargs, kwdict);