• Home
  • Raw
  • Download

Lines Matching refs:SecurityManagerChannel

30 SecurityManagerChannel::SecurityManagerChannel(os::Handler* handler, hci::HciLayer* hci_layer)  in SecurityManagerChannel()  function in bluetooth::security::channel::SecurityManagerChannel
33 …hci_layer->GetSecurityInterface(handler->BindOn(this, &SecurityManagerChannel::OnHciEventReceived)… in SecurityManagerChannel()
37 SecurityManagerChannel::~SecurityManagerChannel() { in ~SecurityManagerChannel()
42 void SecurityManagerChannel::Connect(hci::Address address) { in Connect()
55 void SecurityManagerChannel::Release(hci::Address address) { in Release()
64 void SecurityManagerChannel::Disconnect(hci::Address address) { in Disconnect()
74 void SecurityManagerChannel::OnCommandComplete(hci::CommandCompleteView packet) { in OnCommandComplete()
78 void SecurityManagerChannel::SendCommand(std::unique_ptr<hci::SecurityCommandBuilder> command) { in SendCommand()
80 … handler_->BindOnceOn(this, &SecurityManagerChannel::OnCommandComplete)); in SendCommand()
83 void SecurityManagerChannel::SendCommand( in SendCommand()
88 void SecurityManagerChannel::OnHciEventReceived(hci::EventView packet) { in OnHciEventReceived()
94 void SecurityManagerChannel::OnLinkConnected(std::unique_ptr<l2cap::classic::LinkSecurityInterface>… in OnLinkConnected()
105 void SecurityManagerChannel::OnLinkDisconnected(hci::Address address) { in OnLinkDisconnected()
117 void SecurityManagerChannel::OnAuthenticationComplete(hci::ErrorCode hci_status, hci::Address remot… in OnAuthenticationComplete()
126 void SecurityManagerChannel::OnEncryptionChange(hci::Address remote, bool encrypted) { in OnEncryptionChange()