Home
last modified time | relevance | path

Searched refs:_Py_CheckFunctionResult (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Objects/
Dcall.c33 _Py_CheckFunctionResult(PyThreadState *tstate, PyObject *callable, in _Py_CheckFunctionResult() function
133 return _Py_CheckFunctionResult(tstate, callable, res, NULL); in _PyObject_FastCallDictTstate()
200 return _Py_CheckFunctionResult(tstate, callable, result, NULL); in _PyObject_MakeTpCall()
247 return _Py_CheckFunctionResult(tstate, callable, result, NULL); in PyVectorcall_Call()
285 return _Py_CheckFunctionResult(tstate, callable, result, NULL); in _PyObject_Call()
Dmethodobject.c550 return _Py_CheckFunctionResult(tstate, func, result, NULL); in cfunction_call()
Dtypeobject.c1015 obj = _Py_CheckFunctionResult(tstate, (PyObject*)type, obj, NULL); in type_call()
/third_party/python/Include/cpython/
Dabstract.h40 PyAPI_FUNC(PyObject *) _Py_CheckFunctionResult(
119 return _Py_CheckFunctionResult(tstate, callable, res, NULL); in _PyObject_VectorcallTstate()
/third_party/python/Python/
Dceval.c3846 return _Py_CheckFunctionResult(tstate, NULL, retval, __func__); in _PyEval_EvalFrameDefault()