Home
last modified time | relevance | path

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

/system/bt/gd/security/pairing/
Dpairing_handler.h60 virtual void OnReceive(hci::ChangeConnectionLinkKeyCompleteView packet) = 0;
61 virtual void OnReceive(hci::CentralLinkKeyCompleteView packet) = 0;
62 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;
[all …]
Dclassic_pairing_handler.h70 void OnReceive(hci::ChangeConnectionLinkKeyCompleteView packet) override;
71 void OnReceive(hci::CentralLinkKeyCompleteView packet) override;
72 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;
[all …]
Dclassic_pairing_handler.cc148 this->OnReceive(*user_confirmation_request_); in OnNameRequestComplete()
152 this->OnReceive(*link_key_notification_); in OnNameRequestComplete()
166 void ClassicPairingHandler::OnReceive(hci::ChangeConnectionLinkKeyCompleteView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
171 void ClassicPairingHandler::OnReceive(hci::CentralLinkKeyCompleteView packet) { in OnReceive() function in bluetooth::security::pairing::ClassicPairingHandler
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()
[all …]
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 …]
/system/bt/gd/security/channel/
Dsecurity_manager_channel_unittest.cc88 void OnReceive(hci::AddressWithType device, hci::ChangeConnectionLinkKeyCompleteView packet) { in OnReceive() function in bluetooth::security::channel::__anon46832d850111::SecurityManagerChannelCallback
92 void OnReceive(hci::AddressWithType device, hci::CentralLinkKeyCompleteView packet) { in OnReceive() function in bluetooth::security::channel::__anon46832d850111::SecurityManagerChannelCallback
96 void OnReceive(hci::AddressWithType device, hci::PinCodeRequestView packet) { in OnReceive() function in bluetooth::security::channel::__anon46832d850111::SecurityManagerChannelCallback
100 void OnReceive(hci::AddressWithType device, hci::LinkKeyRequestView packet) { in OnReceive() function in bluetooth::security::channel::__anon46832d850111::SecurityManagerChannelCallback
104 void OnReceive(hci::AddressWithType device, hci::LinkKeyNotificationView packet) { in OnReceive() function in bluetooth::security::channel::__anon46832d850111::SecurityManagerChannelCallback
108 void OnReceive(hci::AddressWithType device, hci::IoCapabilityRequestView packet) { in OnReceive() function in bluetooth::security::channel::__anon46832d850111::SecurityManagerChannelCallback
112 void OnReceive(hci::AddressWithType device, hci::IoCapabilityResponseView packet) { in OnReceive() function in bluetooth::security::channel::__anon46832d850111::SecurityManagerChannelCallback
116 void OnReceive(hci::AddressWithType device, hci::SimplePairingCompleteView packet) { in OnReceive() function in bluetooth::security::channel::__anon46832d850111::SecurityManagerChannelCallback
120 void OnReceive(hci::AddressWithType device, hci::ReturnLinkKeysView packet) { in OnReceive() function in bluetooth::security::channel::__anon46832d850111::SecurityManagerChannelCallback
124 void OnReceive(hci::AddressWithType device, hci::EncryptionChangeView packet) { in OnReceive() function in bluetooth::security::channel::__anon46832d850111::SecurityManagerChannelCallback
[all …]
/system/bt/gd/security/internal/
Dsecurity_manager_impl.cc280 entry->second->OnReceive(packet); in HandleEvent()