Home
last modified time | relevance | path

Searched refs:OnReceive (Results 1 – 6 of 6) sorted by relevance

/aosp12/system/bt/gd/security/pairing/
H A Dpairing_handler.h62 virtual void OnReceive(hci::PinCodeRequestView packet) = 0;
63 virtual void OnReceive(hci::LinkKeyRequestView packet) = 0;
64 virtual void OnReceive(hci::LinkKeyNotificationView packet) = 0;
65 virtual void OnReceive(hci::IoCapabilityRequestView packet) = 0;
66 virtual void OnReceive(hci::IoCapabilityResponseView packet) = 0;
67 virtual void OnReceive(hci::SimplePairingCompleteView packet) = 0;
68 virtual void OnReceive(hci::ReturnLinkKeysView packet) = 0;
69 virtual void OnReceive(hci::EncryptionChangeView packet) = 0;
71 virtual void OnReceive(hci::RemoteOobDataRequestView packet) = 0;
73 virtual void OnReceive(hci::KeypressNotificationView packet) = 0;
[all …]
H A Dclassic_pairing_handler.h72 void OnReceive(hci::PinCodeRequestView packet) override;
73 void OnReceive(hci::LinkKeyRequestView packet) override;
74 void OnReceive(hci::LinkKeyNotificationView packet) override;
75 void OnReceive(hci::IoCapabilityRequestView packet) override;
76 void OnReceive(hci::IoCapabilityResponseView packet) override;
77 void OnReceive(hci::SimplePairingCompleteView packet) override;
78 void OnReceive(hci::ReturnLinkKeysView packet) override;
79 void OnReceive(hci::EncryptionChangeView packet) override;
81 void OnReceive(hci::RemoteOobDataRequestView packet) override;
83 void OnReceive(hci::KeypressNotificationView packet) override;
[all …]
H A Dclassic_pairing_handler.cc148 this->OnReceive(*user_confirmation_request_); in OnNameRequestComplete()
152 this->OnReceive(*link_key_notification_); in OnNameRequestComplete()
176 void ClassicPairingHandler::OnReceive(hci::PinCodeRequestView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
184 void ClassicPairingHandler::OnReceive(hci::LinkKeyRequestView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
206 void ClassicPairingHandler::OnReceive(hci::LinkKeyNotificationView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
221 void ClassicPairingHandler::OnReceive(hci::IoCapabilityRequestView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
237 void ClassicPairingHandler::OnReceive(hci::IoCapabilityResponseView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
298 this->OnReceive(*user_confirmation_request_); in OnReceive()
314 void ClassicPairingHandler::OnReceive(hci::ReturnLinkKeysView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
319 void ClassicPairingHandler::OnReceive(hci::EncryptionChangeView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
[all …]
H A Dclassic_pairing_handler_unittest.cc95 pairing_handler_->OnReceive(hci::PinCodeRequestView::Create(event)); in OnHciEventReceived()
98 pairing_handler_->OnReceive(hci::LinkKeyRequestView::Create(event)); in OnHciEventReceived()
101 pairing_handler_->OnReceive(hci::LinkKeyNotificationView::Create(event)); in OnHciEventReceived()
104 pairing_handler_->OnReceive(hci::IoCapabilityRequestView::Create(event)); in OnHciEventReceived()
107 pairing_handler_->OnReceive(hci::IoCapabilityResponseView::Create(event)); in OnHciEventReceived()
110 pairing_handler_->OnReceive(hci::SimplePairingCompleteView::Create(event)); in OnHciEventReceived()
113 pairing_handler_->OnReceive(hci::ReturnLinkKeysView::Create(event)); in OnHciEventReceived()
116 pairing_handler_->OnReceive(hci::RemoteOobDataRequestView::Create(event)); in OnHciEventReceived()
119 pairing_handler_->OnReceive(hci::UserPasskeyNotificationView::Create(event)); in OnHciEventReceived()
122 pairing_handler_->OnReceive(hci::KeypressNotificationView::Create(event)); in OnHciEventReceived()
[all …]
/aosp12/system/bt/gd/security/channel/
H A Dsecurity_manager_channel_unittest.cc96 void OnReceive(hci::AddressWithType device, hci::PinCodeRequestView packet) { in OnReceive() function in bluetooth::security::channel::__anon11f197ca0110::SecurityManagerChannelCallback
100 void OnReceive(hci::AddressWithType device, hci::LinkKeyRequestView packet) { in OnReceive() function in bluetooth::security::channel::__anon11f197ca0110::SecurityManagerChannelCallback
104 void OnReceive(hci::AddressWithType device, hci::LinkKeyNotificationView packet) { in OnReceive() function in bluetooth::security::channel::__anon11f197ca0110::SecurityManagerChannelCallback
108 void OnReceive(hci::AddressWithType device, hci::IoCapabilityRequestView packet) { in OnReceive() function in bluetooth::security::channel::__anon11f197ca0110::SecurityManagerChannelCallback
112 void OnReceive(hci::AddressWithType device, hci::IoCapabilityResponseView packet) { in OnReceive() function in bluetooth::security::channel::__anon11f197ca0110::SecurityManagerChannelCallback
120 void OnReceive(hci::AddressWithType device, hci::ReturnLinkKeysView packet) { in OnReceive() function in bluetooth::security::channel::__anon11f197ca0110::SecurityManagerChannelCallback
124 void OnReceive(hci::AddressWithType device, hci::EncryptionChangeView packet) { in OnReceive() function in bluetooth::security::channel::__anon11f197ca0110::SecurityManagerChannelCallback
148 void OnReceive(hci::AddressWithType device, hci::UserPasskeyRequestView packet) { in OnReceive() function in bluetooth::security::channel::__anon11f197ca0110::SecurityManagerChannelCallback
165 OnReceive(hci::AddressWithType(), hci::PinCodeRequestView::Create(event)); in OnHciEventReceived()
168 OnReceive(hci::AddressWithType(), hci::LinkKeyRequestView::Create(event)); in OnHciEventReceived()
[all …]
/aosp12/system/bt/gd/security/internal/
H A Dsecurity_manager_impl.cc280 entry->second->OnReceive(packet); in HandleEvent()