Searched refs:PyCoro_CheckExact (Results 1 – 6 of 6) sorted by relevance
161 if (PyCoro_CheckExact(gen)) { in gen_send_ex()171 if (PyCoro_CheckExact(gen) && !closing) { in gen_send_ex()196 if (PyCoro_CheckExact(gen)) { in gen_send_ex()254 if (PyCoro_CheckExact(gen)) { in gen_send_ex()309 if (PyGen_CheckExact(yf) || PyCoro_CheckExact(yf)) { in gen_close_iter()375 if (PyCoro_CheckExact(gen)) { in gen_close()422 if (PyGen_CheckExact(yf) || PyCoro_CheckExact(yf)) { in _gen_throw()871 if (PyCoro_CheckExact(o) || gen_is_coroutine(o)) { in _PyCoro_GetAwaitableIter()884 if (PyCoro_CheckExact(res) || gen_is_coroutine(res)) { in _PyCoro_GetAwaitableIter()
24 .. c:function:: int PyCoro_CheckExact(PyObject *ob)
64 #define PyCoro_CheckExact(op) (Py_TYPE(op) == &PyCoro_Type) macro
174 if (PyCoro_CheckExact(coro)) { in is_coroutine()2633 if (PyGen_CheckExact(coro) || PyCoro_CheckExact(coro)) { in task_step_impl()
2024 if (iter != NULL && PyCoro_CheckExact(iter)) { in _PyEval_EvalFrameDefault()2052 if (PyGen_CheckExact(receiver) || PyCoro_CheckExact(receiver)) { in _PyEval_EvalFrameDefault()3173 if (PyCoro_CheckExact(iterable)) { in _PyEval_EvalFrameDefault()
962 PyCoro_CheckExact:int:::963 PyCoro_CheckExact:PyObject*:ob:0: