Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dcall.c33 _Py_CheckFunctionResult(PyObject *callable, PyObject *result, const char *where) in _Py_CheckFunctionResult() function
130 result = _Py_CheckFunctionResult(callable, result, NULL); in _PyObject_FastCallDict()
206 result = _Py_CheckFunctionResult(callable, result, NULL); in _PyObject_FastCallKeywords()
249 return _Py_CheckFunctionResult(callable, result, NULL); in PyObject_Call()
585 result = _Py_CheckFunctionResult(func, result, NULL); in _PyCFunction_FastCallDict()
733 result = _Py_CheckFunctionResult(func, result, NULL); in _PyCFunction_FastCallKeywords()
773 return _Py_CheckFunctionResult(func, result, NULL); in cfunction_call_varargs()
Ddescrobject.c252 result = _Py_CheckFunctionResult((PyObject *)descr, result, NULL); in methoddescr_call()
290 result = _Py_CheckFunctionResult((PyObject *)descr, result, NULL); in _PyMethodDescr_FastCallKeywords()
336 result = _Py_CheckFunctionResult((PyObject *)descr, result, NULL); in classmethoddescr_call()
Dtypeobject.c930 obj = _Py_CheckFunctionResult((PyObject*)type, obj, NULL); in type_call()
/external/python/cpython3/Include/
Dabstract.h270 PyAPI_FUNC(PyObject *) _Py_CheckFunctionResult(PyObject *callable,
/external/python/cpython3/Python/
Dceval.c3500 return _Py_CheckFunctionResult(NULL, retval, "PyEval_EvalFrameEx"); in _PyEval_EvalFrameDefault()