Home
last modified time | relevance | path

Searched refs:run_coroutine_threadsafe (Results 1 – 25 of 25) sorted by relevance

/aosp_15_r20/external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/aio/
H A Dcommon.pyx.pxi115 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 Dserver.pyx.pxi305 future = asyncio.run_coroutine_threadsafe(
312 future = asyncio.run_coroutine_threadsafe(
/aosp_15_r20/packages/modules/Bluetooth/floss/pandora/server/
Dsecurity.py199 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)
Dhost.py397 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/
Daio.py42 return asyncio.run_coroutine_threadsafe(coro, loop).result()
/aosp_15_r20/external/pigweed/pw_console/py/pw_console/
H A Dplugin_mixin.py130 self.plugin_callback_future = asyncio.run_coroutine_threadsafe(
H A Dtest_mode.py35 background_log_task = asyncio.run_coroutine_threadsafe(
H A Dweb_kernel.py155 asyncio.run_coroutine_threadsafe(
H A Dpw_ptpython_repl.py460 future = asyncio.run_coroutine_threadsafe(
/aosp_15_r20/external/python/cpython3/Doc/library/
Dasyncio-dev.rst90 :func:`run_coroutine_threadsafe` function should be used. It returns a
98 future = asyncio.run_coroutine_threadsafe(coro_func(), loop)
Dasyncio-api-index.rst65 * - :func:`run_coroutine_threadsafe`
Dasyncio-task.rst892 .. 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/
Dtasks.py907 def run_coroutine_threadsafe(coro, loop): function
/aosp_15_r20/external/python/cpython3/Lib/asyncio/
Dtasks.py907 def run_coroutine_threadsafe(coro, loop): function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/asyncio/
Dtasks.py907 def run_coroutine_threadsafe(coro, loop): function
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/asyncio/
H A Dtasks.py907 def run_coroutine_threadsafe(coro, loop): function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/asyncio/
Dtasks.py907 def run_coroutine_threadsafe(coro, loop): function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/asyncio/
Dtasks.py907 def run_coroutine_threadsafe(coro, loop): function
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.5.1rc1.rst470 Add asyncio.run_coroutine_threadsafe(). This lets you submit a coroutine to
D3.6.0a1.rst2767 Add asyncio.run_coroutine_threadsafe(). This lets you submit a coroutine to
/aosp_15_r20/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py3206 future = asyncio.run_coroutine_threadsafe(coro, self.loop)
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.6.rst831 * New :func:`~asyncio.run_coroutine_threadsafe` function to submit
D3.5.rst829 * New :func:`~asyncio.run_coroutine_threadsafe` function to submit
D3.10.rst1913 using :func:`asyncio.run_coroutine_threadsafe` instead.
/aosp_15_r20/external/python/cpython3/Misc/
DHISTORY336 - Issue #25304: Add asyncio.run_coroutine_threadsafe(). This lets you