Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/security/pairing/
Dpairing_handler.h61 virtual void OnReceive(hci::ChangeConnectionLinkKeyCompleteView packet) = 0;
62 virtual void OnReceive(hci::CentralLinkKeyCompleteView packet) = 0;
63 virtual void OnReceive(hci::PinCodeRequestView packet) = 0;
64 virtual void OnReceive(hci::LinkKeyRequestView packet) = 0;
65 virtual void OnReceive(hci::LinkKeyNotificationView packet) = 0;
66 virtual void OnReceive(hci::IoCapabilityRequestView packet) = 0;
67 virtual void OnReceive(hci::IoCapabilityResponseView packet) = 0;
68 virtual void OnReceive(hci::SimplePairingCompleteView packet) = 0;
69 virtual void OnReceive(hci::ReturnLinkKeysView packet) = 0;
70 virtual void OnReceive(hci::EncryptionChangeView packet) = 0;
[all …]
Dclassic_pairing_handler.h67 void OnReceive(hci::ChangeConnectionLinkKeyCompleteView packet) override;
68 void OnReceive(hci::CentralLinkKeyCompleteView packet) override;
69 void OnReceive(hci::PinCodeRequestView packet) override;
70 void OnReceive(hci::LinkKeyRequestView packet) override;
71 void OnReceive(hci::LinkKeyNotificationView packet) override;
72 void OnReceive(hci::IoCapabilityRequestView packet) override;
73 void OnReceive(hci::IoCapabilityResponseView packet) override;
74 void OnReceive(hci::SimplePairingCompleteView packet) override;
75 void OnReceive(hci::ReturnLinkKeysView packet) override;
76 void OnReceive(hci::EncryptionChangeView packet) override;
[all …]
Dclassic_pairing_handler.cc161 this->OnReceive(*user_confirmation_request_); in OnNameRequestComplete()
165 this->OnReceive(*link_key_notification_); in OnNameRequestComplete()
179 void ClassicPairingHandler::OnReceive(hci::ChangeConnectionLinkKeyCompleteView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
184 void ClassicPairingHandler::OnReceive(hci::CentralLinkKeyCompleteView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
189 void ClassicPairingHandler::OnReceive(hci::PinCodeRequestView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
201 void ClassicPairingHandler::OnReceive(hci::LinkKeyRequestView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
224 void ClassicPairingHandler::OnReceive(hci::LinkKeyNotificationView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
240 void ClassicPairingHandler::OnReceive(hci::IoCapabilityRequestView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
257 void ClassicPairingHandler::OnReceive(hci::IoCapabilityResponseView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
319 this->OnReceive(*user_confirmation_request_); in OnReceive()
[all …]
Dclassic_pairing_handler_unittest.cc96 pairing_handler_->OnReceive(hci::PinCodeRequestView::Create(event)); in OnHciEventReceived()
99 pairing_handler_->OnReceive(hci::LinkKeyRequestView::Create(event)); in OnHciEventReceived()
102 pairing_handler_->OnReceive(hci::LinkKeyNotificationView::Create(event)); in OnHciEventReceived()
105 pairing_handler_->OnReceive(hci::IoCapabilityRequestView::Create(event)); in OnHciEventReceived()
108 pairing_handler_->OnReceive(hci::IoCapabilityResponseView::Create(event)); in OnHciEventReceived()
111 pairing_handler_->OnReceive(hci::SimplePairingCompleteView::Create(event)); in OnHciEventReceived()
114 pairing_handler_->OnReceive(hci::ReturnLinkKeysView::Create(event)); in OnHciEventReceived()
117 pairing_handler_->OnReceive(hci::RemoteOobDataRequestView::Create(event)); in OnHciEventReceived()
120 pairing_handler_->OnReceive(hci::UserPasskeyNotificationView::Create(event)); in OnHciEventReceived()
123 pairing_handler_->OnReceive(hci::KeypressNotificationView::Create(event)); in OnHciEventReceived()
[all …]
/packages/modules/Bluetooth/system/gd/security/channel/
Dsecurity_manager_channel_unittest.cc88 void OnReceive(hci::AddressWithType device, hci::ChangeConnectionLinkKeyCompleteView packet) { in OnReceive() function in bluetooth::security::channel::__anonef73f6740111::SecurityManagerChannelCallback
92 void OnReceive(hci::AddressWithType device, hci::CentralLinkKeyCompleteView packet) { in OnReceive() function in bluetooth::security::channel::__anonef73f6740111::SecurityManagerChannelCallback
96 void OnReceive(hci::AddressWithType device, hci::PinCodeRequestView packet) { in OnReceive() function in bluetooth::security::channel::__anonef73f6740111::SecurityManagerChannelCallback
100 void OnReceive(hci::AddressWithType device, hci::LinkKeyRequestView packet) { in OnReceive() function in bluetooth::security::channel::__anonef73f6740111::SecurityManagerChannelCallback
104 void OnReceive(hci::AddressWithType device, hci::LinkKeyNotificationView packet) { in OnReceive() function in bluetooth::security::channel::__anonef73f6740111::SecurityManagerChannelCallback
108 void OnReceive(hci::AddressWithType device, hci::IoCapabilityRequestView packet) { in OnReceive() function in bluetooth::security::channel::__anonef73f6740111::SecurityManagerChannelCallback
112 void OnReceive(hci::AddressWithType device, hci::IoCapabilityResponseView packet) { in OnReceive() function in bluetooth::security::channel::__anonef73f6740111::SecurityManagerChannelCallback
116 void OnReceive(hci::AddressWithType device, hci::SimplePairingCompleteView packet) { in OnReceive() function in bluetooth::security::channel::__anonef73f6740111::SecurityManagerChannelCallback
120 void OnReceive(hci::AddressWithType device, hci::ReturnLinkKeysView packet) { in OnReceive() function in bluetooth::security::channel::__anonef73f6740111::SecurityManagerChannelCallback
124 void OnReceive(hci::AddressWithType device, hci::EncryptionChangeView packet) { in OnReceive() function in bluetooth::security::channel::__anonef73f6740111::SecurityManagerChannelCallback
[all …]
/packages/modules/Bluetooth/system/gd/security/internal/
Dsecurity_manager_impl.cc298 entry->second->OnReceive(packet); in HandleEvent()