Home
last modified time | relevance | path

Searched refs:SecurityManagerChannel (Results 1 – 9 of 9) sorted by relevance

/system/bt/gd/security/channel/
Dsecurity_manager_channel.cc30 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()
54 void SecurityManagerChannel::Release(hci::Address address) { in Release()
63 void SecurityManagerChannel::Disconnect(hci::Address address) { in Disconnect()
72 void SecurityManagerChannel::OnCommandComplete(hci::CommandCompleteView packet) { in OnCommandComplete()
76 void SecurityManagerChannel::SendCommand(std::unique_ptr<hci::SecurityCommandBuilder> command) { in SendCommand()
78 … handler_->BindOnceOn(this, &SecurityManagerChannel::OnCommandComplete)); in SendCommand()
81 void SecurityManagerChannel::OnHciEventReceived(hci::EventPacketView packet) { in OnHciEventReceived()
[all …]
Dsecurity_manager_channel.h48 class SecurityManagerChannel : public l2cap::classic::LinkSecurityInterfaceListener {
50 SecurityManagerChannel(os::Handler* handler, hci::HciLayer* hci_layer);
52 virtual ~SecurityManagerChannel();
Dsecurity_manager_channel_unittest.cc34 using bluetooth::security::channel::SecurityManagerChannel;
49 class FakeSecurityManagerChannel : public SecurityManagerChannel {
52 : SecurityManagerChannel(handler, hci_layer) {} in FakeSecurityManagerChannel()
252 SecurityManagerChannel* channel_ = nullptr;
/system/bt/gd/security/pairing/
Dpairing_handler.h40 PairingHandler(channel::SecurityManagerChannel* security_manager_channel, in PairingHandler()
74 channel::SecurityManagerChannel* GetChannel() { in GetChannel()
79 channel::SecurityManagerChannel* security_manager_channel_ __attribute__((unused));
Dclassic_pairing_handler.h38 ClassicPairingHandler(channel::SecurityManagerChannel* security_manager_channel, in ClassicPairingHandler()
Dclassic_pairing_handler_unittest.cc37 using bluetooth::security::channel::SecurityManagerChannel;
49 class FakeSecurityManagerChannel : public channel::SecurityManagerChannel {
52 : channel::SecurityManagerChannel(handler, hci_layer) {} in FakeSecurityManagerChannel()
197 channel::SecurityManagerChannel* channel_ = nullptr;
/system/bt/gd/security/
Dsecurity_module.cc50 … security_manager_channel_(new channel::SecurityManagerChannel(security_handler_, hci_layer)), in impl()
64 channel::SecurityManagerChannel* security_manager_channel_;
/system/bt/gd/security/internal/
Dsecurity_manager_impl.h57 channel::SecurityManagerChannel* security_manager_channel,
223 channel::SecurityManagerChannel* security_manager_channel_;
Dsecurity_manager_impl.cc583 channel::SecurityManagerChannel* security_manager_channel, in SecurityManagerImpl()