Searched refs:LeConnection (Results 1 – 5 of 5) sorted by relevance
/packages/modules/Bluetooth/system/rust/src/connection/ |
D | attempt_manager.rs | 12 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 };
|
D | le_manager.rs | 19 use super::LeConnection; 59 fn on_le_connect(&self, address: AddressWithType, result: Result<LeConnection, ErrorCode>); in on_le_connect() argument
|
D | ffi.rs | 19 ConnectionManagerClient, LeConnection, 120 callback.on_le_connect(address, Ok(LeConnection { remote_address: address })) in on_le_connect_success()
|
/packages/modules/Bluetooth/system/rust/src/ |
D | connection.rs | 71 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/ |
D | mock_le_manager.rs | 14 LeConnection, 52 .on_le_connect(address, Ok(LeConnection { remote_address: address })); in on_le_connect()
|