/external/sdv/vsomeip/third_party/boost/asio/test/ |
D | coroutine.cpp | 28 void yield_break_coro(boost::asio::coroutine& coro) in yield_break_coro() 39 boost::asio::coroutine coro; in yield_break_test() local 51 void return_coro(boost::asio::coroutine& coro) in return_coro() 61 boost::asio::coroutine coro; in return_test() local 70 void exception_coro(boost::asio::coroutine& coro) in exception_coro() 80 boost::asio::coroutine coro; in exception_test() local 89 void fall_off_end_coro(boost::asio::coroutine& coro) in fall_off_end_coro() 98 boost::asio::coroutine coro; in fall_off_end_test() local
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_staggered.py | 26 async def coro(index): function 42 async def coro(index): function 62 async def coro(index): function 82 async def coro(index): function 103 async def coro(index): function
|
D | test_eager_task_factory.py | 23 def run_coro(self, coro): argument 74 async def coro(): function 87 async def coro(): function 102 async def coro(): function 117 async def coro(): function 135 async def coro(): function 153 async def coro(): function 167 async def coro(fut1, fut2): function 191 async def coro(): function 295 async def coro(): function [all …]
|
D | test_tasks.py | 90 def new_task(self, loop, coro, name='TestTask', context=None): argument 108 async def coro(): function 123 async def coro(): function 265 def __init__(self, coro): argument 270 async def coro(): function 689 async def coro(): function 749 async def coro(): function 783 async def coro(): function 809 async def coro(): function 835 async def coro(): function [all …]
|
D | test_locks.py | 1104 async def coro(tag): function 1259 def make_tasks(self, n, coro): argument 1263 async def gather_tasks(self, n, coro): argument 1341 async def coro(): function 1406 async def coro(): function 1427 async def coro(): function 1450 async def coro(): function 1472 async def coro(): function 1498 async def coro(): function 1543 async def coro(): function [all …]
|
D | test_waitfor.py | 137 async def coro(): function 305 async def coro(): function 327 async def coro(): function 339 async def coro(): function
|
D | test_runners.py | 219 def __init__(self, loop, coro, **kwargs): argument 421 async def coro(): function 436 async def coro(fut): function 459 async def coro(): function 471 async def coro(): function 486 async def coro(): function 507 async def coro(): function
|
D | test_sendfile.py | 133 def run_loop(self, coro): argument 512 async def coro(): function
|
D | test_pep492.py | 165 async def coro(): function
|
/external/python/cpython3/Lib/asyncio/ |
D | coroutines.py | 48 def _format_coroutine(coro): argument 51 def get_name(coro): argument 65 def is_running(coro): argument
|
D | tasks.py | 99 def __init__(self, coro, *, loop=None, name=None, context=None, argument 402 def create_task(coro, *, name=None, context=None): argument 984 def run_coroutine_threadsafe(coro, loop): argument 1026 def factory(loop, coro, *, name=None, context=None): argument
|
D | taskgroups.py | 181 def create_task(self, coro, *, name=None, context=None): argument
|
D | runners.py | 86 def run(self, coro, *, context=None): argument
|
/external/pigweed/pw_async2/public/pw_async2/ |
D | coro_or_else_task.h | 28 CoroOrElseTask(Coro<Status>&& coro, pw::Function<void(Status)>&& or_else) in CoroOrElseTask() 34 void SetCoro(Coro<Status>&& coro) { in SetCoro()
|
/external/grpc-grpc/src/python/grpcio_tests/tests_aio/unit/ |
D | call_test.py | 119 async def coro(): function 134 async def coro(): function 148 async def coro(): function 163 async def coro(): function
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_coro.h | 82 static inline void lp_build_coro_add_presplit(LLVMValueRef coro) in lp_build_coro_add_presplit()
|
/external/python/cpython3/Objects/ |
D | genobject.c | 914 PyObject *coro = make_gen(&PyCoro_Type, func); in _Py_MakeCoro() local 1056 coro_repr(PyCoroObject *coro) in coro_repr() 1063 coro_await(PyCoroObject *coro) in coro_await() 1075 coro_get_cr_await(PyCoroObject *coro, void *Py_UNUSED(ignored)) in coro_get_cr_await() 1084 cr_getsuspended(PyCoroObject *coro, void *Py_UNUSED(ignored)) in cr_getsuspended() 1093 cr_getrunning(PyCoroObject *coro, void *Py_UNUSED(ignored)) in cr_getrunning() 1102 cr_getframe(PyCoroObject *coro, void *Py_UNUSED(ignored)) in cr_getframe() 1108 cr_getcode(PyCoroObject *coro, void *Py_UNUSED(ignored)) in cr_getcode() 1343 PyObject *coro = gen_new_with_qualname(&PyCoro_Type, f, name, qualname); in PyCoro_New() local
|
/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/ |
D | spawn.hpp | 93 const detail::weak_ptr<callee_type>& coro, in basic_yield_context()
|
/external/perfetto/infra/ci/ |
D | common_utils.py | 127 def defer(coro): argument
|
/external/pigweed/pw_async2/examples/ |
D | coro_blinky_loop.cc | 75 ExpectCoroTask(Coro<pw::Status>&& coro) : coro_(std::move(coro)) {} in ExpectCoroTask()
|
D | once_send_recv.cc | 111 auto coro = ReceiveAndLogValue(coro_cx, std::move(send_recv.second)); in TEST() local
|
D | count.cc | 61 Coro<Status> coro = CountCoro(coro_cx, period, times); in StartCounting() local
|
D | basic.cc | 197 auto coro = ReceiveAndSendCoro(coro_cx, MyReceiver(), MySender()); in TEST() local
|
/external/python/cpython3/Lib/test/ |
D | test_coroutines.py | 42 def run_async(coro): argument 56 def run_async__await__(coro): argument 761 async def coro(): function 777 async def reader(coro): argument 798 async def read(coro): argument 1097 async def coro(): function 1130 def __init__(self, coro): argument 1169 async def waiter(coro): argument
|
/external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/aio/ |
D | common.pyx.pxi | 110 def schedule_coro_threadsafe(object coro, object loop):
|