Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/rust/src/utils/
Dtask.rs12 pub fn block_on_locally<T>(f: impl Future<Output = T>) -> T { in block_on_locally()
42 f: impl IntoFuture<Output = T> + 'static, in try_await()
43 ) -> Result<T, impl Future<Output = T>> { in try_await()
/packages/modules/Bluetooth/tools/rootcanal/rust/src/lmp/procedure/
Dmod.rs73 type Output = O; typedef
75 fn poll(self: Pin<&mut Self>, _cx: &mut task::Context<'_>) -> Poll<Self::Output> { in poll()
87 type Output = Result<(), u8>; typedef
89 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/Virtualization/docs/
Dvm_remote_attestation.md73 ## Output section in VM Remote Attestation
/packages/modules/Bluetooth/system/rust/src/core/
Dshared_mutex.rs36 pub fn lock(&self) -> impl Future<Output = Option<OwnedMutexGuard<T>>> { in lock()
/packages/modules/Bluetooth/tools/rootcanal/rust/src/lmp/
Dec.rs351 type Output = Point<Curve>; typedef
353 fn add(self, rhs: &Point<Curve>) -> Self::Output { in add()
397 type Output = Point<Curve>; typedef
399 fn mul(self, rhs: &BigInt) -> Self::Output { in mul()
/packages/modules/Bluetooth/tools/rootcanal/rust/src/lmp/test/
Dcontext.rs124 pub fn poll(future: Pin<&mut impl Future<Output = ()>>) -> Poll<()> { in poll()
/packages/modules/DnsResolver/doh/connection/
Dmod.rs222 ) -> Result<impl Future<Output = Option<Stream>>> { in query()
/packages/modules/Bluetooth/system/rust/src/gatt/
Dmtu.rs60 pub fn snapshot(&self) -> impl Future<Output = Option<usize>> { in snapshot()
/packages/modules/DnsResolver/doh/
Dboot_time.rs143 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.rs425 ) -> Result<&<I as SliceIndex<[String]>>::Output, CommandError> in get_arg()
/packages/modules/Bluetooth/system/rust/src/gatt/server/
Datt_server_bearer.rs108 ) -> impl Future<Output = Result<(), IndicationError>> { in send_indication()
/packages/modules/Nfc/libnfc-nci/tools/casimir/src/
Dmain.rs266 type Output = (); typedef
Dmain-grpc.rs283 type Output = (); typedef
Dcontroller.rs2251 async fn run_until<O>(&mut self, future: impl Future<Output = O>) -> Result<O> { in run_until()
/packages/modules/Bluetooth/offload/hci/
Dcommand.rs466 Output = 0x01, enumerator
/packages/modules/NeuralNetworks/tools/test_generator/
Dtest_generator.py329 class Output(InOut): class