Searched refs:_Py_CheckFunctionResult (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Objects/ |
D | call.c | 33 _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()
|
D | methodobject.c | 550 return _Py_CheckFunctionResult(tstate, func, result, NULL); in cfunction_call()
|
D | typeobject.c | 1015 obj = _Py_CheckFunctionResult(tstate, (PyObject*)type, obj, NULL); in type_call()
|
/third_party/python/Include/cpython/ |
D | abstract.h | 40 PyAPI_FUNC(PyObject *) _Py_CheckFunctionResult( 119 return _Py_CheckFunctionResult(tstate, callable, res, NULL); in _PyObject_VectorcallTstate()
|
/third_party/python/Python/ |
D | ceval.c | 3846 return _Py_CheckFunctionResult(tstate, NULL, retval, __func__); in _PyEval_EvalFrameDefault()
|