Lines Matching defs:result
34 PyObject *result, const char *where)
38 if (result == NULL) {
58 Py_DECREF(result);
63 "%R returned a result with an exception set", callable);
68 "%s returned a result with an exception set", where);
73 Py_FatalError("a function returned a result with an exception set");
78 return result;
211 PyObject *result = NULL;
214 result = _PyCFunctionWithKeywords_TrampolineCall(
224 return _Py_CheckFunctionResult(tstate, callable, result, NULL);
257 PyObject *result = func(callable, args,
261 return _Py_CheckFunctionResult(tstate, callable, result, NULL);
317 PyObject *result;
343 result = (*call)(callable, args, kwargs);
347 return _Py_CheckFunctionResult(tstate, callable, result, NULL);
482 PyObject *result = _PyObject_FastCallDictTstate(tstate, callable,
488 return result;
502 PyObject *result;
530 result = _PyObject_VectorcallTstate(tstate, callable,
536 result = _PyObject_VectorcallTstate(tstate, callable,
546 return result;
554 PyObject *result;
558 result = _PyObject_CallFunctionVa(tstate, callable, format, va, 0);
561 return result;
572 PyObject *result;
576 result = _PyObject_CallFunctionVa(tstate, callable, format, va, 0);
579 return result;
590 PyObject *result = _PyObject_CallFunctionVa(tstate, callable, format, va, 1);
593 return result;
777 PyObject *result;
819 result = _PyObject_VectorcallTstate(tstate, callable, stack, nargs, NULL);
824 return result;
855 PyObject *result = _PyObject_VectorcallTstate(tstate, callable,
858 return result;
879 PyObject *result = object_vacall(tstate, obj, callable, vargs);
883 return result;
909 PyObject *result = object_vacall(tstate, obj, callable, vargs);
913 return result;
922 PyObject *result;
925 result = object_vacall(tstate, NULL, callable, vargs);
928 return result;