Lines Matching refs:self
23 _asyncio_Future___init___impl(FutureObj *self, PyObject *loop);
26 _asyncio_Future___init__(PyObject *self, PyObject *args, PyObject *kwargs)
46 return_value = _asyncio_Future___init___impl((FutureObj *)self, loop);
53 "result($self, /)\n"
66 _asyncio_Future_result_impl(FutureObj *self);
69 _asyncio_Future_result(FutureObj *self, PyObject *Py_UNUSED(ignored))
71 return _asyncio_Future_result_impl(self);
75 "exception($self, /)\n"
89 _asyncio_Future_exception_impl(FutureObj *self);
92 _asyncio_Future_exception(FutureObj *self, PyObject *Py_UNUSED(ignored))
94 return _asyncio_Future_exception_impl(self);
98 "set_result($self, result, /)\n"
110 "set_exception($self, exception, /)\n"
122 "add_done_callback($self, fn, /, *, context=<unrepresentable>)\n"
135 _asyncio_Future_add_done_callback_impl(FutureObj *self, PyObject *fn,
139 _asyncio_Future_add_done_callback(FutureObj *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
159 return_value = _asyncio_Future_add_done_callback_impl(self, fn, context);
166 "remove_done_callback($self, fn, /)\n"
177 "cancel($self, /, msg=None)\n"
190 _asyncio_Future_cancel_impl(FutureObj *self, PyObject *msg);
193 _asyncio_Future_cancel(FutureObj *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
211 return_value = _asyncio_Future_cancel_impl(self, msg);
218 "cancelled($self, /)\n"
227 _asyncio_Future_cancelled_impl(FutureObj *self);
230 _asyncio_Future_cancelled(FutureObj *self, PyObject *Py_UNUSED(ignored))
232 return _asyncio_Future_cancelled_impl(self);
236 "done($self, /)\n"
248 _asyncio_Future_done_impl(FutureObj *self);
251 _asyncio_Future_done(FutureObj *self, PyObject *Py_UNUSED(ignored))
253 return _asyncio_Future_done_impl(self);
257 "get_loop($self, /)\n"
266 _asyncio_Future_get_loop_impl(FutureObj *self);
269 _asyncio_Future_get_loop(FutureObj *self, PyObject *Py_UNUSED(ignored))
271 return _asyncio_Future_get_loop_impl(self);
275 "_make_cancelled_error($self, /)\n"
287 _asyncio_Future__make_cancelled_error_impl(FutureObj *self);
290 _asyncio_Future__make_cancelled_error(FutureObj *self, PyObject *Py_UNUSED(ignored))
292 return _asyncio_Future__make_cancelled_error_impl(self);
302 _asyncio_Task___init___impl(TaskObj *self, PyObject *coro, PyObject *loop,
306 _asyncio_Task___init__(PyObject *self, PyObject *args, PyObject *kwargs)
342 return_value = _asyncio_Task___init___impl((TaskObj *)self, coro, loop, name, context);
349 "_make_cancelled_error($self, /)\n"
361 _asyncio_Task__make_cancelled_error_impl(TaskObj *self);
364 _asyncio_Task__make_cancelled_error(TaskObj *self, PyObject *Py_UNUSED(ignored))
366 return _asyncio_Task__make_cancelled_error_impl(self);
370 "cancel($self, /, msg=None)\n"
398 _asyncio_Task_cancel_impl(TaskObj *self, PyObject *msg);
401 _asyncio_Task_cancel(TaskObj *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
419 return_value = _asyncio_Task_cancel_impl(self, msg);
426 "cancelling($self, /)\n"
438 _asyncio_Task_cancelling_impl(TaskObj *self);
441 _asyncio_Task_cancelling(TaskObj *self, PyObject *Py_UNUSED(ignored))
443 return _asyncio_Task_cancelling_impl(self);
447 "uncancel($self, /)\n"
461 _asyncio_Task_uncancel_impl(TaskObj *self);
464 _asyncio_Task_uncancel(TaskObj *self, PyObject *Py_UNUSED(ignored))
466 return _asyncio_Task_uncancel_impl(self);
470 "get_stack($self, /, *, limit=None)\n"
497 _asyncio_Task_get_stack_impl(TaskObj *self, PyObject *limit);
500 _asyncio_Task_get_stack(TaskObj *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
518 return_value = _asyncio_Task_get_stack_impl(self, limit);
525 "print_stack($self, /, *, limit=None, file=None)\n"
540 _asyncio_Task_print_stack_impl(TaskObj *self, PyObject *limit,
544 _asyncio_Task_print_stack(TaskObj *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
569 return_value = _asyncio_Task_print_stack_impl(self, limit, file);
576 "set_result($self, result, /)\n"
584 "set_exception($self, exception, /)\n"
592 "get_coro($self, /)\n"
600 _asyncio_Task_get_coro_impl(TaskObj *self);
603 _asyncio_Task_get_coro(TaskObj *self, PyObject *Py_UNUSED(ignored))
605 return _asyncio_Task_get_coro_impl(self);
609 "get_name($self, /)\n"
617 _asyncio_Task_get_name_impl(TaskObj *self);
620 _asyncio_Task_get_name(TaskObj *self, PyObject *Py_UNUSED(ignored))
622 return _asyncio_Task_get_name_impl(self);
626 "set_name($self, value, /)\n"