Home
last modified time | relevance | path

Searched refs:encryption_change_view (Results 1 – 7 of 7) sorted by relevance

/system/bt/gd/security/
Dsecurity_manager_listener.h61 virtual void OnEncryptionStateChanged(hci::EncryptionChangeView encryption_change_view) = 0;
Dfacade.cc500 void OnEncryptionStateChanged(hci::EncryptionChangeView encryption_change_view) override {} in OnEncryptionStateChanged() argument
/system/bt/gd/hci/acl_manager/
Dclassic_impl.h642 void OnEncryptionStateChanged(EncryptionChangeView encryption_change_view) override { in OnEncryptionStateChanged()
643 if (!encryption_change_view.IsValid()) { in OnEncryptionStateChanged()
646 } else if (encryption_change_view.GetStatus() != ErrorCode::SUCCESS) { in OnEncryptionStateChanged()
647 auto status = encryption_change_view.GetStatus(); in OnEncryptionStateChanged()
652 uint16_t handle = encryption_change_view.GetConnectionHandle(); in OnEncryptionStateChanged()
659 EncryptionEnabled enabled = encryption_change_view.GetEncryptionEnabled(); in OnEncryptionStateChanged()
/system/bt/gd/security/internal/
Dsecurity_manager_impl.cc243 …curityManagerImpl::NotifyEncryptionStateChanged(hci::EncryptionChangeView encryption_change_view) { in NotifyEncryptionStateChanged() argument
246 encryption_change_view)); in NotifyEncryptionStateChanged()
326 EncryptionChangeView encryption_change_view = EncryptionChangeView::Create(event); in OnHciEventReceived() local
327 if (!encryption_change_view.IsValid()) { in OnHciEventReceived()
331 if (encryption_change_view.GetConnectionHandle() == pending_le_pairing_.connection_handle_) { in OnHciEventReceived()
335 NotifyEncryptionStateChanged(encryption_change_view); in OnHciEventReceived()
Dsecurity_manager_impl.h214 void NotifyEncryptionStateChanged(hci::EncryptionChangeView encryption_change_view);
/system/bt/gd/hci/
Dhci_metrics_logging.cc503 EncryptionChangeView encryption_change_view = EncryptionChangeView::Create(std::move(packet)); in log_classic_pairing_other_hci_event() local
504 ASSERT(encryption_change_view.IsValid()); in log_classic_pairing_other_hci_event()
505 status = encryption_change_view.GetStatus(); in log_classic_pairing_other_hci_event()
506 connection_handle = encryption_change_view.GetConnectionHandle(); in log_classic_pairing_other_hci_event()
507 value = static_cast<int64_t>(encryption_change_view.GetEncryptionEnabled()); in log_classic_pairing_other_hci_event()
/system/bt/main/shim/
Dbtm_api.cc513 bluetooth::hci::EncryptionChangeView encryption_change_view) override { in OnEncryptionStateChanged() argument