Lines Matching defs:result
611 PyObject *encoded, *escaped_str, *repr_str, *buffer, *result;
637 result = PyObject_CallMethodOneArg(buffer, &_Py_ID(write), encoded);
640 if (result == NULL)
642 Py_DECREF(result);
950 PyObject *result = _PyObject_FastCallTstate(tstate, callback, stack, 3);
953 return result;
965 PyObject *result = call_trampoline(tstate, self, frame, what, arg);
966 if (result == NULL) {
971 Py_DECREF(result);
991 PyObject *result = call_trampoline(tstate, callback, frame, what, arg);
992 if (result == NULL) {
998 if (result != Py_None) {
999 Py_XSETREF(frame->f_trace, result);
1002 Py_DECREF(result);
1437 /* Disable deprecation warnings about GetVersionEx as the result is
3376 PyObject *result = _PyObject_CallMethodOneArg(file, &_Py_ID(write), unicode);
3377 if (result == NULL) {
3380 Py_DECREF(result);