Home
last modified time | relevance | path

Searched refs:ConnectionManager (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/system/rust/src/
Dconnection.rs81 pub struct ConnectionManager { struct
96 struct ConnectionManagerCallbackHandler(WeakBox<ConnectionManager>);
113 fn with_manager(&self, f: impl FnOnce(&ConnectionManager)) { in with_manager() argument
118 impl ConnectionManager { implementation
140 impl WeakBoxRef<'_, ConnectionManager> {
204 impl ConnectionManager { impl
282 let connection_manager = ConnectionManager::new(mock_le_manager.clone()); in test_single_direct_connection()
299 let connection_manager = ConnectionManager::new(mock_le_manager.clone()); in test_failed_direct_connection()
315 let connection_manager = ConnectionManager::new(mock_le_manager.clone()); in test_single_background_connection()
332 let connection_manager = ConnectionManager::new(mock_le_manager.clone()); in test_resolved_connection()
[all …]
Dlib.rs58 pub connection_manager: SharedBox<connection::ConnectionManager>,
98 let connection_manager = connection::ConnectionManager::new(le_acl_manager); in start()