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 157 return _Py_CheckFunctionResult(tstate, callable, res, NULL); in _PyObject_FastCallDictTstate() 224 return _Py_CheckFunctionResult(tstate, callable, result, NULL); in _PyObject_MakeTpCall() 271 return _Py_CheckFunctionResult(tstate, callable, result, NULL); in PyVectorcall_Call() 309 return _Py_CheckFunctionResult(tstate, callable, result, NULL); in _PyObject_Call()
|
D | methodobject.c | 554 return _Py_CheckFunctionResult(tstate, func, result, NULL); in cfunction_call()
|
D | typeobject.c | 1122 obj = _Py_CheckFunctionResult(tstate, (PyObject*)type, obj, NULL); in type_call()
|
/third_party/python/Include/cpython/ |
D | abstract.h | 36 PyAPI_FUNC(PyObject *) _Py_CheckFunctionResult( 115 return _Py_CheckFunctionResult(tstate, callable, res, NULL); in _PyObject_VectorcallTstate()
|
/third_party/python/Python/ |
D | ceval.c | 4551 return _Py_CheckFunctionResult(tstate, NULL, retval, __func__); in _PyEval_EvalFrameDefault()
|