Home
last modified time | relevance | path

Searched refs:OnAclDisconnected (Results 1 – 13 of 13) sorted by relevance

/packages/modules/Bluetooth/system/gd/l2cap/le/internal/
Dlink.cc67 void Link::OnAclDisconnected(hci::ErrorCode reason) { in OnAclDisconnected() function in bluetooth::l2cap::le::internal::Link
68 fixed_channel_allocator_.OnAclDisconnected(static_cast<hci::ErrorCode>(reason)); in OnAclDisconnected()
69 dynamic_channel_allocator_.OnAclDisconnected(static_cast<hci::ErrorCode>(reason)); in OnAclDisconnected()
73 OnAclDisconnected(status); in OnDisconnection()
Dlink_mock.h42 MOCK_METHOD(void, OnAclDisconnected, (hci::ErrorCode status), (override));
Dlink.h81 virtual void OnAclDisconnected(hci::ErrorCode reason);
/packages/modules/Bluetooth/system/gd/l2cap/classic/internal/
Dlink.cc71 void Link::OnAclDisconnected(hci::ErrorCode status) { in OnAclDisconnected() function in bluetooth::l2cap::classic::internal::Link
73 fixed_channel_allocator_.OnAclDisconnected(status); in OnAclDisconnected()
74 dynamic_channel_allocator_.OnAclDisconnected(status); in OnAclDisconnected()
441 OnAclDisconnected(reason); in OnDisconnection()
Dlink_mock.h45 MOCK_METHOD(void, OnAclDisconnected, (hci::ErrorCode status), (override));
Dlink_test.cc136 link_->OnAclDisconnected(hci::ErrorCode::UNKNOWN_HCI_COMMAND); in TEST_F()
Dlink.h79 virtual void OnAclDisconnected(hci::ErrorCode status);
/packages/modules/Bluetooth/system/gd/l2cap/internal/
Ddynamic_channel_allocator.h74 void OnAclDisconnected(hci::ErrorCode hci_status);
Dfixed_channel_allocator.h100 virtual void OnAclDisconnected(hci::ErrorCode hci_status) { in OnAclDisconnected() function
Ddynamic_channel_allocator.cc131 void DynamicChannelAllocator::OnAclDisconnected(hci::ErrorCode reason) { in OnAclDisconnected() function in bluetooth::l2cap::internal::DynamicChannelAllocator
/packages/modules/Bluetooth/system/gd/l2cap/fuzz/
Dfuzz_l2cap.cc107 link->OnAclDisconnected(hci::ErrorCode::SUCCESS); in LLVMFuzzerTestOneInput()
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dlib.rs114 OnAclDisconnected(BluetoothDevice), enumerator
392 Message::OnAclDisconnected(device) => { in dispatch()
Dbluetooth.rs2082 let _ = txl.send(Message::OnAclDisconnected(info)).await; in acl_state()