/aosp_15_r20/external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/aio/ |
H A D | common.pyx.pxi | 115 return asyncio.run_coroutine_threadsafe( 127 future = asyncio.run_coroutine_threadsafe( 156 asyncio.run_coroutine_threadsafe(queue.put(item), loop).result() 158 asyncio.run_coroutine_threadsafe(queue.put(EOF), loop).result()
|
H A D | server.pyx.pxi | 305 future = asyncio.run_coroutine_threadsafe( 312 future = asyncio.run_coroutine_threadsafe(
|
/aosp_15_r20/packages/modules/Bluetooth/floss/pandora/server/ |
D | security.py | 199 asyncio.run_coroutine_threadsafe(self.task['pairing_events'].put(result), self.loop) 210 asyncio.run_coroutine_threadsafe(self.task['pairing_events'].put(result), self.loop) 218 asyncio.run_coroutine_threadsafe(self.task['pairing_events'].put(result), self.loop)
|
D | host.py | 397 asyncio.run_coroutine_threadsafe(self.task['connections'].put(address), self.loop) 469 … asyncio.run_coroutine_threadsafe(self.task['scan_results'].put(scan_result), self.loop) 556 … asyncio.run_coroutine_threadsafe(self.task['inquiry_results'].put(address), self.loop)
|
/aosp_15_r20/external/pandora/avatar/avatar/ |
D | aio.py | 42 return asyncio.run_coroutine_threadsafe(coro, loop).result()
|
/aosp_15_r20/external/pigweed/pw_console/py/pw_console/ |
H A D | plugin_mixin.py | 130 self.plugin_callback_future = asyncio.run_coroutine_threadsafe(
|
H A D | test_mode.py | 35 background_log_task = asyncio.run_coroutine_threadsafe(
|
H A D | web_kernel.py | 155 asyncio.run_coroutine_threadsafe(
|
H A D | pw_ptpython_repl.py | 460 future = asyncio.run_coroutine_threadsafe(
|
/aosp_15_r20/external/python/cpython3/Doc/library/ |
D | asyncio-dev.rst | 90 :func:`run_coroutine_threadsafe` function should be used. It returns a 98 future = asyncio.run_coroutine_threadsafe(coro_func(), loop)
|
D | asyncio-api-index.rst | 65 * - :func:`run_coroutine_threadsafe`
|
D | asyncio-task.rst | 892 .. function:: run_coroutine_threadsafe(coro, loop) 906 future = asyncio.run_coroutine_threadsafe(coro, loop)
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/asyncio/ |
D | tasks.py | 907 def run_coroutine_threadsafe(coro, loop): function
|
/aosp_15_r20/external/python/cpython3/Lib/asyncio/ |
D | tasks.py | 907 def run_coroutine_threadsafe(coro, loop): function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/asyncio/ |
D | tasks.py | 907 def run_coroutine_threadsafe(coro, loop): function
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/asyncio/ |
H A D | tasks.py | 907 def run_coroutine_threadsafe(coro, loop): function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/asyncio/ |
D | tasks.py | 907 def run_coroutine_threadsafe(coro, loop): function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/asyncio/ |
D | tasks.py | 907 def run_coroutine_threadsafe(coro, loop): function
|
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.1rc1.rst | 470 Add asyncio.run_coroutine_threadsafe(). This lets you submit a coroutine to
|
D | 3.6.0a1.rst | 2767 Add asyncio.run_coroutine_threadsafe(). This lets you submit a coroutine to
|
/aosp_15_r20/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_tasks.py | 3206 future = asyncio.run_coroutine_threadsafe(coro, self.loop)
|
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/ |
D | 3.6.rst | 831 * New :func:`~asyncio.run_coroutine_threadsafe` function to submit
|
D | 3.5.rst | 829 * New :func:`~asyncio.run_coroutine_threadsafe` function to submit
|
D | 3.10.rst | 1913 using :func:`asyncio.run_coroutine_threadsafe` instead.
|
/aosp_15_r20/external/python/cpython3/Misc/ |
D | HISTORY | 336 - Issue #25304: Add asyncio.run_coroutine_threadsafe(). This lets you
|