/system/bt/gd/hci/ |
D | hci_layer.cc | 31 using bluetooth::common::BindOn; 541 …impl_->acl_queue_.GetDownEnd()->RegisterDequeue(handler, BindOn(impl_, &impl::on_outbound_acl_read… in Start() 542 …impl_->iso_queue_.GetDownEnd()->RegisterDequeue(handler, BindOn(impl_, &impl::on_outbound_iso_read… in Start() 543 …RegisterEventHandler(EventCode::COMMAND_COMPLETE, handler->BindOn(impl_, &impl::on_command_complet… in Start() 544 RegisterEventHandler(EventCode::COMMAND_STATUS, handler->BindOn(impl_, &impl::on_command_status)); in Start() 545 RegisterLeMetaEventHandler(handler->BindOn(impl_, &impl::on_le_meta_event)); in Start() 548 … EventCode::DISCONNECTION_COMPLETE, handler->BindOn(this, &HciLayer::on_disconnection_complete)); in Start() 551 handler->BindOn(this, &HciLayer::on_read_remote_version_complete)); in Start() 553 auto drop_packet = handler->BindOn(impl_, &impl::drop); in Start()
|
D | vendor_specific_event_manager.cc | 38 …EventCode::VENDOR_SPECIFIC, handler->BindOn(this, &VendorSpecificEventManager::impl::on_vendor_spe… in start()
|
D | hci_layer_test.cc | 202 … hci_->GetSecurityInterface(GetHandler()->BindOn(this, &DependsOnHci::handle_event<EventView>)); in SendSecurityCommandExpectingComplete() 211 …hci_->GetLeSecurityInterface(GetHandler()->BindOn(this, &DependsOnHci::handle_event<LeMetaEventVie… in SendLeSecurityCommandExpectingComplete() 279 …EventCode::CONNECTION_COMPLETE, GetHandler()->BindOn(this, &DependsOnHci::handle_event<EventView>)… in Start() 281 …SubeventCode::CONNECTION_COMPLETE, GetHandler()->BindOn(this, &DependsOnHci::handle_event<LeMetaEv… in Start()
|
D | le_scanning_manager_test.cc | 173 GetHandler()->BindOn(this, &TestHciLayer::CommandCompleteCallback)); in Start() 174 …RegisterEventHandler(EventCode::COMMAND_STATUS, GetHandler()->BindOn(this, &TestHciLayer::CommandS… in Start()
|
D | le_scanning_manager.cc | 220 module_handler_->BindOn(this, &LeScanningManager::impl::handle_scan_results)); in start() 234 …VseSubeventCode::BLE_THRESHOLD, handler->BindOn(this, &LeScanningManager::impl::on_storage_thresho… in start() 236 …VseSubeventCode::BLE_TRACKING, handler->BindOn(this, &LeScanningManager::impl::on_advertisement_tr… in start()
|
D | le_advertising_manager_test.cc | 213 GetHandler()->BindOn(this, &TestHciLayer::CommandCompleteCallback)); in Start() 214 …RegisterEventHandler(EventCode::COMMAND_STATUS, GetHandler()->BindOn(this, &TestHciLayer::CommandS… in Start()
|
D | acl_manager_test.cc | 290 GetHandler()->BindOn(this, &TestHciLayer::CommandCompleteCallback)); in Start() 291 …RegisterEventHandler(EventCode::COMMAND_STATUS, GetHandler()->BindOn(this, &TestHciLayer::CommandS… in Start()
|
D | controller.cc | 40 …EventCode::NUMBER_OF_COMPLETED_PACKETS, handler->BindOn(this, &Controller::impl::NumberOfCompleted… in Start()
|
D | le_advertising_manager.cc | 106 …hci_layer_->GetLeAdvertisingInterface(module_handler_->BindOn(this, &LeAdvertisingManager::impl::h… in start()
|
/system/bt/gd/common/ |
D | bind.h | 34 inline base::Callback<MakeUnboundRunType<Functor, T, Args...>> BindOn(T* obj, Functor&& functor, Ar… in BindOn() function
|
/system/bt/gd/neighbor/ |
D | inquiry.cc | 248 hci::EventCode::INQUIRY_RESULT, handler_->BindOn(this, &InquiryModule::impl::OnEvent)); in RegisterCallbacks() 250 … hci::EventCode::INQUIRY_RESULT_WITH_RSSI, handler_->BindOn(this, &InquiryModule::impl::OnEvent)); in RegisterCallbacks() 252 … hci::EventCode::EXTENDED_INQUIRY_RESULT, handler_->BindOn(this, &InquiryModule::impl::OnEvent)); in RegisterCallbacks() 254 hci::EventCode::INQUIRY_COMPLETE, handler_->BindOn(this, &InquiryModule::impl::OnEvent)); in RegisterCallbacks()
|
D | name.cc | 144 … hci::EventCode::REMOTE_NAME_REQUEST_COMPLETE, handler_->BindOn(this, &NameModule::impl::OnEvent)); in Start()
|
/system/bt/gd/l2cap/fuzz/ |
D | shim_l2cap.h | 49 handler_->BindOn(this, &ShimL2capFuzz::OnConnectionComplete), in CreateConnection()
|
/system/bt/gd/l2cap/classic/internal/ |
D | link_test.cc | 120 .on_open_callback_ = handler_->BindOn(this, &L2capClassicLinkTest::OnOpen), in TEST_F()
|
/system/bt/gd/security/channel/ |
D | security_manager_channel.cc | 33 …hci_layer->GetSecurityInterface(handler->BindOn(this, &SecurityManagerChannel::OnHciEventReceived)… in SecurityManagerChannel()
|
/system/bt/gd/hci/facade/ |
D | facade.cc | 89 …static_cast<EventCode>(event->code()), facade_handler_->BindOn(this, &HciFacadeService::on_event)); in RequestEvent() 98 …static_cast<SubeventCode>(event->code()), facade_handler_->BindOn(this, &HciFacadeService::on_le_s… in RequestLeSubevent()
|
/system/bt/gd/os/ |
D | handler.h | 86 common::ContextualCallback<common::MakeUnboundRunType<Functor, T, Args...>> BindOn( in BindOn() function
|
/system/bt/gd/hci/acl_manager/ |
D | le_impl.h | 65 handler_->BindOn(this, &le_impl::on_le_event), in le_impl() 66 handler_->BindOn(this, &le_impl::on_le_disconnect), in le_impl() 67 handler_->BindOn(this, &le_impl::on_le_read_remote_version_information)); in le_impl()
|
D | classic_impl.h | 56 handler_->BindOn(this, &classic_impl::on_classic_event), in classic_impl() 57 handler_->BindOn(this, &classic_impl::on_classic_disconnect), in classic_impl() 58 handler_->BindOn(this, &classic_impl::on_read_remote_version_information)); in classic_impl()
|
D | round_robin_scheduler.cc | 34 …controller_->RegisterCompletedAclPacketsCallback(handler->BindOn(this, &RoundRobinScheduler::incom… in RoundRobinScheduler()
|
/system/bt/gd/l2cap/classic/ |
D | facade.cc | 274 handler_->BindOn(this, &L2capDynamicChannelHelper::on_connection_open)); in L2capDynamicChannelHelper() 293 handler_->BindOn(this, &L2capDynamicChannelHelper::on_connection_open), in Connect()
|
/system/bt/gd/iso/internal/ |
D | iso_manager_impl.cc | 36 …hci_le_iso_interface_(hci_layer->GetLeIsoInterface(iso_handler_->BindOn(this, &IsoManagerImpl::OnH… in IsoManagerImpl()
|
/system/bt/gd/iso/ |
D | facade.cc | 49 iso_handler_->BindOn(this, &IsoModuleFacadeService::OnIsoPacketReceived)); in IsoModuleFacadeService()
|
/system/bt/main/shim/ |
D | l2c_api.cc | 100 GetGdShimHandler()->BindOn( in Register() 123 GetGdShimHandler()->BindOn( in Connect()
|
/system/bt/gd/security/internal/ |
D | security_manager_impl.cc | 676 …hci_layer->GetLeSecurityInterface(security_handler_->BindOn(this, &SecurityManagerImpl::OnHciLeEve… in SecurityManagerImpl()
|