Home
last modified time | relevance | path

Searched defs:Output (Results 1 – 17 of 17) sorted by relevance

/packages/modules/Bluetooth/system/rust/src/utils/
Dtask.rs17 pub fn block_on_locally<T>(f: impl Future<Output = T>) -> T { in block_on_locally()
47 f: impl IntoFuture<Output = T> + 'static, in try_await()
48 ) -> Result<T, impl Future<Output = T>> { in try_await()
/packages/modules/Bluetooth/tools/rootcanal/rust/src/lmp/procedure/
Dmod.rs58 type Output = O; typedef
60 fn poll(self: Pin<&mut Self>, _cx: &mut task::Context<'_>) -> Poll<Self::Output> { in poll()
72 type Output = Result<(), u8>; typedef
74 fn poll(self: Pin<&mut Self>, _cx: &mut task::Context<'_>) -> Poll<Self::Output> { in poll()
/packages/modules/Bluetooth/system/rust/tests/utils/
Dmod.rs5 pub fn start_test(f: impl Future<Output = ()>) { in start_test()
/packages/modules/Bluetooth/tools/rootcanal/rust/src/lmp/
Dec.rs331 type Output = Point<Curve>; typedef
333 fn add(self, rhs: &Point<Curve>) -> Self::Output { in add()
369 type Output = Point<Curve>; typedef
371 fn mul(self, rhs: &BigInt) -> Self::Output { in mul()
/packages/modules/Bluetooth/system/rust/src/core/
Dshared_mutex.rs34 pub fn lock(&self) -> impl Future<Output = Option<OwnedMutexGuard<T>>> { in lock()
/packages/modules/Bluetooth/tools/pdl/src/
Danalyzer.rs69 type Output = Size; typedef
70 fn add(self, rhs: Size) -> Self::Output { in add()
80 type Output = Size; typedef
81 fn mul(self, rhs: Size) -> Self::Output { in mul()
91 type Output = Size; typedef
92 fn mul(self, rhs: usize) -> Self::Output { in mul()
Dast.rs255 type Output = SourceRange; typedef
/packages/modules/Bluetooth/system/rust/src/connection/
Dattempt_manager.rs53 type Output = F::Output; typedef
87 PendingConnectionAttempt<impl Future<Output = Result<LeConnection, ConnectionFailure>>>, in register_direct_connection()
/packages/modules/DnsResolver/doh/connection/
Dmod.rs205 ) -> Result<impl Future<Output = Option<Stream>>> { in query()
/packages/modules/Bluetooth/tools/rootcanal/rust/src/lmp/test/
Dcontext.rs112 pub fn poll(future: Pin<&mut impl Future<Output = ()>>) -> Poll<()> { in poll()
/packages/modules/Bluetooth/system/rust/src/gatt/
Dmtu.rs59 pub fn snapshot(&self) -> impl Future<Output = Option<usize>> { in snapshot()
/packages/modules/DnsResolver/doh/
Dboot_time.rs147 pub async fn timeout<T>(duration: Duration, future: impl Future<Output = T>) -> Result<T, Elapsed> { in timeout()
/packages/modules/Bluetooth/system/gd/rust/linux/client/src/
Deditor.rs148 type Output = rustyline::Result<String>; typedef
Dcommand_handler.rs347 ) -> Result<&<I as SliceIndex<[String]>>::Output, CommandError> in get_arg()
/packages/modules/Bluetooth/system/rust/src/gatt/server/
Datt_server_bearer.rs121 ) -> impl Future<Output = Result<(), IndicationError>> { in send_indication()
/packages/modules/Bluetooth/system/rust/src/
Dconnection.rs162 impl Future<Output = Result<LeConnection, ConnectionFailure>>, in direct_connection()
/packages/modules/NeuralNetworks/tools/test_generator/
Dtest_generator.py329 class Output(InOut): class