Lines Matching refs:tstate
37 PyThreadState *tstate,
48 PyThreadState *tstate,
99 _PyObject_VectorcallTstate(PyThreadState *tstate, PyObject *callable, in _PyObject_VectorcallTstate() argument
112 return _PyObject_MakeTpCall(tstate, callable, args, nargs, kwnames); in _PyObject_VectorcallTstate()
115 return _Py_CheckFunctionResult(tstate, callable, res, NULL); in _PyObject_VectorcallTstate()
122 PyThreadState *tstate = PyThreadState_Get(); in PyObject_Vectorcall() local
123 return _PyObject_VectorcallTstate(tstate, callable, in PyObject_Vectorcall()
149 _PyObject_FastCallTstate(PyThreadState *tstate, PyObject *func, PyObject *const *args, Py_ssize_t n… in _PyObject_FastCallTstate() argument
151 return _PyObject_VectorcallTstate(tstate, func, args, (size_t)nargs, NULL); in _PyObject_FastCallTstate()
158 PyThreadState *tstate = PyThreadState_Get(); in _PyObject_FastCall() local
159 return _PyObject_FastCallTstate(tstate, func, args, nargs); in _PyObject_FastCall()
167 PyThreadState *tstate = PyThreadState_Get(); in _PyObject_CallNoArg() local
168 return _PyObject_VectorcallTstate(tstate, func, NULL, 0, NULL); in _PyObject_CallNoArg()
176 PyThreadState *tstate; in PyObject_CallOneArg() local
182 tstate = PyThreadState_Get(); in PyObject_CallOneArg()
184 return _PyObject_VectorcallTstate(tstate, func, args, nargsf, NULL); in PyObject_CallOneArg()