Home
last modified time | relevance | path

Searched refs:hci_ (Results 1 – 5 of 5) sorted by relevance

/system/bt/gd/hci/fuzz/
Dhci_layer_fuzz_client.cc29 hci_ = GetDependency<hci::HciLayer>(); in Start()
30 aclDevNull_ = new os::fuzz::DevNullQueue<AclView>(hci_->GetAclQueueEnd(), GetHandler()); in Start()
32 aclInject_ = new os::fuzz::FuzzInjectQueue<AclBuilder>(hci_->GetAclQueueEnd(), GetHandler()); in Start()
36 le_security_interface_ = hci_->GetLeSecurityInterface(GetHandler()->Bind([](LeMetaEventView) {})); in Start()
37 acl_connection_interface_ = hci_->GetAclConnectionInterface( in Start()
41 le_acl_connection_interface_ = hci_->GetLeAclConnectionInterface( in Start()
45 …le_advertising_interface_ = hci_->GetLeAdvertisingInterface(GetHandler()->Bind([](LeMetaEventView)… in Start()
46 le_scanning_interface_ = hci_->GetLeScanningInterface(GetHandler()->Bind([](LeMetaEventView) {})); in Start()
95 inject_command<CommandView, CommandBuilder>(data, hci_); in injectHciCommand()
Dhci_layer_fuzz_client.h79 hci::HciLayer* hci_ = nullptr; variable
/system/bt/gd/hci/
Dcontroller.cc36 hci_ = hci; in Start()
39 hci_->RegisterEventHandler( in Start()
49 hci_->EnqueueCommand( in Start()
53 hci_->EnqueueCommand(ReadLocalNameBuilder::Create(), in Start()
55 hci_->EnqueueCommand(ReadLocalVersionInformationBuilder::Create(), in Start()
57 hci_->EnqueueCommand(ReadLocalSupportedCommandsBuilder::Create(), in Start()
63 hci_->EnqueueCommand(ReadLocalExtendedFeaturesBuilder::Create(0x00), in Start()
68 hci_->EnqueueCommand(ReadBufferSizeBuilder::Create(), in Start()
72 hci_->EnqueueCommand( in Start()
76 hci_->EnqueueCommand( in Start()
[all …]
Dhci_layer.h124 explicit CommandInterfaceImpl(HciLayer& hci) : hci_(hci) {} in CommandInterfaceImpl()
129 hci_.EnqueueCommand(move(command), std::move(on_complete)); in EnqueueCommand()
134 hci_.EnqueueCommand(move(command), std::move(on_status)); in EnqueueCommand()
136 HciLayer& hci_; variable
Dhci_layer_test.cc190 hci_->EnqueueCommand( in SendHciCommandExpectingStatus()
195 hci_->EnqueueCommand( in SendHciCommandExpectingComplete()
202hci_->GetSecurityInterface(GetHandler()->BindOn(this, &DependsOnHci::handle_event<EventView>)); in SendSecurityCommandExpectingComplete()
204 hci_->EnqueueCommand( in SendSecurityCommandExpectingComplete()
211hci_->GetLeSecurityInterface(GetHandler()->BindOn(this, &DependsOnHci::handle_event<LeMetaEventVie… in SendLeSecurityCommandExpectingComplete()
213 hci_->EnqueueCommand( in SendLeSecurityCommandExpectingComplete()
219 auto queue_end = hci_->GetAclQueueEnd(); in SendAclData()
225 auto queue_end = hci_->GetIsoQueueEnd(); in SendIsoData()
277 hci_ = GetDependency<HciLayer>(); in Start()
278 hci_->RegisterEventHandler( in Start()
[all …]