Searched refs:PyCoro_CheckExact (Results 1 – 6 of 6) sorted by relevance
160 if (PyCoro_CheckExact(gen)) { in gen_send_ex()170 if (PyCoro_CheckExact(gen) && !closing) { in gen_send_ex()195 if (PyCoro_CheckExact(gen)) { in gen_send_ex()253 if (PyCoro_CheckExact(gen)) { in gen_send_ex()308 if (PyGen_CheckExact(yf) || PyCoro_CheckExact(yf)) { in gen_close_iter()374 if (PyCoro_CheckExact(gen)) { in gen_close()421 if (PyGen_CheckExact(yf) || PyCoro_CheckExact(yf)) { in _gen_throw()873 if (PyCoro_CheckExact(o) || gen_is_coroutine(o)) { in _PyCoro_GetAwaitableIter()886 if (PyCoro_CheckExact(res) || gen_is_coroutine(res)) { in _PyCoro_GetAwaitableIter()
24 .. c:function:: int PyCoro_CheckExact(PyObject *ob)
62 #define PyCoro_CheckExact(op) (Py_TYPE(op) == &PyCoro_Type) macro
170 if (PyCoro_CheckExact(coro)) { in is_coroutine()2557 if (PyGen_CheckExact(coro) || PyCoro_CheckExact(coro)) { in task_step_impl()
1757 if (iter != NULL && PyCoro_CheckExact(iter)) { in _PyEval_EvalFrameDefault()1786 if (PyGen_CheckExact(receiver) || PyCoro_CheckExact(receiver)) { in _PyEval_EvalFrameDefault()2780 if (PyCoro_CheckExact(iterable)) { in _PyEval_EvalFrameDefault()
934 PyCoro_CheckExact:int:::935 PyCoro_CheckExact:PyObject*:ob:0: