/packages/modules/Bluetooth/system/gd/l2cap/ |
D | dynamic_channel.cc | 25 return impl_->GetDevice(); in GetDevice() 30 …impl_.get(), &l2cap::internal::DynamicChannelImpl::RegisterOnCloseCallback, std::move(on_close_cal… in RegisterOnCloseCallback() 34 l2cap_handler_->CallOn(impl_.get(), &l2cap::internal::DynamicChannelImpl::Close); in Close() 39 return impl_->GetQueueUpEnd(); in GetQueueUpEnd() 43 return impl_->GetRemoteCid(); in HACK_GetRemoteCid() 47 return impl_->SetChannelTxPriority(high_priority); in HACK_SetChannelTxPriority()
|
D | dynamic_channel.h | 41 : impl_(std::move(impl)), l2cap_handler_(l2cap_handler) { in DynamicChannel() 42 log::assert_that(impl_ != nullptr, "assert failed: impl_ != nullptr"); in DynamicChannel() 82 std::shared_ptr<l2cap::internal::DynamicChannelImpl> impl_;
|
/packages/modules/Bluetooth/system/gd/l2cap/le/ |
D | fixed_channel.cc | 26 return impl_->GetDevice(); in GetDevice() 30 …l2cap_handler_->Post(common::BindOnce(&internal::FixedChannelImpl::RegisterOnCloseCallback, impl_,… in RegisterOnCloseCallback() 35 l2cap_handler_->Post(common::BindOnce(&internal::FixedChannelImpl::Acquire, impl_)); in Acquire() 39 l2cap_handler_->Post(common::BindOnce(&internal::FixedChannelImpl::Release, impl_)); in Release() 44 return impl_->GetQueueUpEnd(); in GetQueueUpEnd() 48 return impl_->GetLinkOptions(); in GetLinkOptions()
|
D | fixed_channel.h | 45 : impl_(std::move(impl)), l2cap_handler_(l2cap_handler) { in FixedChannel() 46 log::assert_that(impl_ != nullptr, "assert failed: impl_ != nullptr"); in FixedChannel() 92 std::shared_ptr<internal::FixedChannelImpl> impl_;
|
/packages/modules/Bluetooth/system/gd/hci/ |
D | hci_layer.cc | 539 module_.CallOn(module_.impl_, &impl::on_hci_event, std::move(event)); in hciEventReceived() 546 module_.impl_->incoming_acl_buffer_.Enqueue(std::move(acl), module_.GetHandler()); in aclDataReceived() 553 module_.impl_->incoming_sco_buffer_.Enqueue(std::move(sco), module_.GetHandler()); in scoDataReceived() 560 module_.impl_->incoming_iso_buffer_.Enqueue(std::move(iso), module_.GetHandler()); in isoDataReceived() 566 HciLayer::HciLayer() : impl_(nullptr), hal_callbacks_(nullptr) {} in HciLayer() 571 return impl_->acl_queue_.GetUpEnd(); in GetAclQueueEnd() 575 return impl_->sco_queue_.GetUpEnd(); in GetScoQueueEnd() 579 return impl_->iso_queue_.GetUpEnd(); in GetIsoQueueEnd() 585 impl_, in EnqueueCommand() 594 impl_, &impl::enqueue_command<CommandStatusView>, std::move(command), std::move(on_status)); in EnqueueCommand() [all …]
|
D | controller.cc | 1241 Controller::Controller() : impl_(std::make_unique<impl>(*this)) {} in Controller() 1246 CallOn(impl_.get(), &impl::register_completed_acl_packets_callback, cb); in RegisterCompletedAclPacketsCallback() 1250 CallOn(impl_.get(), &impl::unregister_completed_acl_packets_callback); in UnregisterCompletedAclPacketsCallback() 1254 CallOn(impl_.get(), &impl::register_completed_monitor_acl_packets_callback, cb); in RegisterCompletedMonitorAclPacketsCallback() 1258 CallOn(impl_.get(), &impl::unregister_completed_monitor_acl_packets_callback); in UnregisterCompletedMonitorAclPacketsCallback() 1262 return impl_->local_name_; in GetLocalName() 1266 return impl_->local_version_information_; in GetLocalVersionInformation() 1270 return impl_->local_supported_codec_ids_; in GetLocalSupportedBrEdrCodecIds() 1358 if (page_number < impl_->extended_lmp_features_array_.size()) { in GetLocalFeatures() 1359 return impl_->extended_lmp_features_array_[page_number]; in GetLocalFeatures() [all …]
|
D | hci_layer.h | 151 impl* impl_; variable
|
D | controller.h | 235 std::unique_ptr<impl> impl_; variable
|
/packages/modules/Bluetooth/system/gd/l2cap/classic/ |
D | fixed_channel.cc | 26 return impl_->GetDevice(); in GetDevice() 30 …l2cap_handler_->Post(common::BindOnce(&internal::FixedChannelImpl::RegisterOnCloseCallback, impl_,… in RegisterOnCloseCallback() 35 l2cap_handler_->Post(common::BindOnce(&internal::FixedChannelImpl::Acquire, impl_)); in Acquire() 39 l2cap_handler_->Post(common::BindOnce(&internal::FixedChannelImpl::Release, impl_)); in Release() 44 return impl_->GetQueueUpEnd(); in GetQueueUpEnd()
|
D | fixed_channel.h | 44 : impl_(std::move(impl)), l2cap_handler_(l2cap_handler) { in FixedChannel() 45 log::assert_that(impl_ != nullptr, "assert failed: impl_ != nullptr"); in FixedChannel() 84 std::shared_ptr<internal::FixedChannelImpl> impl_;
|
/packages/modules/Bluetooth/system/gd/l2cap/fuzz/ |
D | fuzz_l2cap_classic_module.h | 35 return std::make_unique<FuzzDynamicChannelManager>(*impl_); in GetDynamicChannelManager() 42 std::unique_ptr<FuzzDynamicChannelManagerImpl> impl_; variable 46 impl_ = std::make_unique<FuzzDynamicChannelManagerImpl>(); in Start() 50 impl_.reset(); in Stop()
|
D | fuzz_dynamic_channel_manager.h | 39 …impl_.ConnectChannel(device, configuration_option, psm, std::move(on_open_callback), std::move(on_… in ConnectChannel() 48 impl_.RegisterService( in RegisterService() 51 FuzzDynamicChannelManager(FuzzDynamicChannelManagerImpl& impl) : impl_(impl) {} in FuzzDynamicChannelManager() 52 FuzzDynamicChannelManagerImpl& impl_; variable
|
/packages/modules/Bluetooth/system/main/test/ |
D | main_shim_stack_dumpsys_test.cc | 203 std::shared_ptr<impl> impl_; member in TestStackDumpsys1 227 impl_ = std::make_shared<impl>(); in TestStackDumpsys1() 231 PostMethodOnMain(impl_, &impl::test, test_data); in TestMethod() 236 GetHandler()->CallOn(impl_.get(), &impl::is_stack_running, in IsStackRunning() 252 std::shared_ptr<impl> impl_; member in TestStackDumpsys2 270 impl_ = std::make_shared<impl>(); in TestStackDumpsys2() 274 PostMethodOnMain(impl_, &impl::test, test_data); in TestMethod() 289 std::shared_ptr<impl> impl_; member in TestStackDumpsys3 307 impl_ = std::make_shared<impl>(); in TestStackDumpsys3() 311 PostMethodOnMain(impl_, &impl::test, test_data); in TestMethod() [all …]
|
D | main_shim_stack_lifecycle_test.cc | 179 std::shared_ptr<impl> impl_; member in __anone15484dd0111::TestStackModule1 197 impl_ = std::make_shared<impl>(); in TestStackModule1() 201 PostMethodOnMain(impl_, &impl::test, test_data); in TestMethod() 216 std::shared_ptr<impl> impl_; member in __anone15484dd0111::TestStackModule2 234 impl_ = std::make_shared<impl>(); in TestStackModule2() 238 PostMethodOnMain(impl_, &impl::test, test_data); in TestMethod() 253 std::shared_ptr<impl> impl_; member in __anone15484dd0111::TestStackModule3 271 impl_ = std::make_shared<impl>(); in TestStackModule3() 275 PostMethodOnMain(impl_, &impl::test, test_data); in TestMethod() 292 std::shared_ptr<impl> impl_; member in __anone15484dd0111::TestStackModule4
|