Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/rust/src/gatt/server/
Dindication_handler.rs41 pub struct IndicationHandler<T> { struct
46 impl<T: AttDatabase> IndicationHandler<T> { implementation
172 IndicationHandler::new(get_att_database()); in test_indication_sent()
204 IndicationHandler::new(get_att_database()); in test_invalid_handle()
221 IndicationHandler::new(get_att_database()); in test_unsupported_permission()
238 IndicationHandler::new(get_att_database()); in test_confirmation_handled()
264 IndicationHandler::new(get_att_database()); in test_unblock_on_disconnect()
294 IndicationHandler::new(get_att_database()); in test_spurious_confirmations()
328 IndicationHandler::new(get_att_database()); in test_indication_timeout()
365 IndicationHandler::new(get_att_database()); in test_mtu_exceeds()
Datt_server_bearer.rs31 indication_handler::{ConfirmationWatcher, IndicationError, IndicationHandler},
62 indication_handler: SharedMutex<IndicationHandler<T>>,
76 let (indication_handler, pending_confirmation) = IndicationHandler::new(db.clone()); in new()