Home
last modified time | relevance | path

Searched refs:LeConnection (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Bluetooth/system/rust/src/connection/
Dattempt_manager.rs12 CreateConnectionFailure, LeConnection,
24 conn_tx: Option<oneshot::Sender<Result<LeConnection, ErrorCode>>>,
51 F: Future<Output = Result<LeConnection, ConnectionFailure>>,
87 PendingConnectionAttempt<impl Future<Output = Result<LeConnection, ConnectionFailure>>>, in register_direct_connection()
174 result: Result<LeConnection, ErrorCode>, in process_connection() argument
211 const CONNECTION_1: LeConnection = LeConnection { remote_address: ADDRESS_1 };
212 const CONNECTION_2: LeConnection = LeConnection { remote_address: ADDRESS_2 };
Dle_manager.rs19 use super::LeConnection;
59 fn on_le_connect(&self, address: AddressWithType, result: Result<LeConnection, ErrorCode>); in on_le_connect() argument
Dffi.rs19 ConnectionManagerClient, LeConnection,
120 callback.on_le_connect(address, Ok(LeConnection { remote_address: address })) in on_le_connect_success()
/packages/modules/Bluetooth/system/rust/src/
Dconnection.rs71 pub struct LeConnection { struct
103 fn on_le_connect(&self, address: AddressWithType, result: Result<LeConnection, ErrorCode>) { in on_le_connect() argument
162 impl Future<Output = Result<LeConnection, ConnectionFailure>>, in direct_connection()
193 return Ok(LeConnection { remote_address: address }); in direct_connection()
244 fn on_le_connect(&self, address: AddressWithType, result: Result<LeConnection, ErrorCode>) { in on_le_connect() argument
/packages/modules/Bluetooth/system/rust/src/connection/mocks/
Dmock_le_manager.rs14 LeConnection,
52 .on_le_connect(address, Ok(LeConnection { remote_address: address })); in on_le_connect()