Lines Matching defs:fut_result
489 Py_CLEAR(fut->fut_result);
548 assert(!fut->fut_result);
550 fut->fut_result = res;
669 Py_INCREF(fut->fut_result);
670 *result = fut->fut_result;
805 Py_CLEAR(fut->fut_result);
822 Py_VISIT(fut->fut_result);
1298 if (fut->fut_result == NULL) {
1301 Py_INCREF(fut->fut_result);
1302 return fut->fut_result;
3018 PyObject *fut_result = NULL;
3019 int res = future_get_result((FutureObj*)o, &fut_result);
3023 assert(fut_result == NULL);
3026 Py_DECREF(fut_result);
3030 result = task_step(task, fut_result);
3031 Py_DECREF(fut_result);
3036 PyObject *fut_result = PyObject_CallMethod(o, "result", NULL);
3037 if (fut_result != NULL) {
3038 Py_DECREF(fut_result);