Searched refs:encryption_change_view (Results 1 – 7 of 7) sorted by relevance
61 virtual void OnEncryptionStateChanged(hci::EncryptionChangeView encryption_change_view) = 0;
500 void OnEncryptionStateChanged(hci::EncryptionChangeView encryption_change_view) override {} in OnEncryptionStateChanged() argument
642 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()
243 …curityManagerImpl::NotifyEncryptionStateChanged(hci::EncryptionChangeView encryption_change_view) { in NotifyEncryptionStateChanged() argument246 encryption_change_view)); in NotifyEncryptionStateChanged()326 EncryptionChangeView encryption_change_view = EncryptionChangeView::Create(event); in OnHciEventReceived() local327 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()
214 void NotifyEncryptionStateChanged(hci::EncryptionChangeView encryption_change_view);
503 EncryptionChangeView encryption_change_view = EncryptionChangeView::Create(std::move(packet)); in log_classic_pairing_other_hci_event() local504 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()
513 bluetooth::hci::EncryptionChangeView encryption_change_view) override { in OnEncryptionStateChanged() argument