Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/rust/src/gatt/server/
Datt_server_bearer.rs152 pub fn handle_mtu_event(&self, mtu_event: MtuEvent) -> Result<()> { in handle_mtu_event() method
602 conn.as_ref().handle_mtu_event(MtuEvent::OutgoingRequest).unwrap(); in test_single_indication_pending_mtu()
612 conn.as_ref().handle_mtu_event(MtuEvent::IncomingResponse(100)).unwrap(); in test_single_indication_pending_mtu()
624 conn.as_ref().handle_mtu_event(MtuEvent::OutgoingRequest).unwrap(); in test_single_indication_pending_mtu_fail()
635 conn.as_ref().handle_mtu_event(MtuEvent::IncomingResponse(32)).unwrap(); in test_single_indication_pending_mtu_fail()
647 conn.as_ref().handle_mtu_event(MtuEvent::OutgoingRequest).unwrap(); in test_server_transaction_pending_mtu()
683 conn.as_ref().handle_mtu_event(MtuEvent::OutgoingRequest).unwrap(); in test_queued_indication_pending_mtu_uses_mtu_on_dequeue()
684 conn.as_ref().handle_mtu_event(MtuEvent::IncomingResponse(512)).unwrap(); in test_queued_indication_pending_mtu_uses_mtu_on_dequeue()
/packages/modules/Bluetooth/system/rust/src/gatt/
Darbiter.rs150 if let Err(err) = bearer.handle_mtu_event(event) { in on_mtu_event()