Lines Matching refs:impl
31 struct ScanModule::impl { struct in bluetooth::neighbor::ScanModule
32 impl(ScanModule& module);
60 neighbor::ScanModule::impl::impl(neighbor::ScanModule& module) in impl() function in bluetooth::neighbor::neighbor::ScanModule::impl
63 void neighbor::ScanModule::impl::OnCommandComplete(hci::CommandCompleteView view) { in OnCommandComplete()
84 void neighbor::ScanModule::impl::WriteScanEnable() { in WriteScanEnable()
99 …hci_layer_->EnqueueCommand(std::move(packet), handler_->BindOnceOn(this, &impl::OnCommandComplete)… in WriteScanEnable()
104 …hci_layer_->EnqueueCommand(std::move(packet), handler_->BindOnceOn(this, &impl::OnCommandComplete)… in WriteScanEnable()
108 void neighbor::ScanModule::impl::ReadScanEnable(hci::ScanEnable scan_enable) { in ReadScanEnable()
132 void neighbor::ScanModule::impl::SetInquiryScan(bool enabled) { in SetInquiryScan()
137 void neighbor::ScanModule::impl::SetPageScan(bool enabled) { in SetPageScan()
142 bool neighbor::ScanModule::impl::IsInquiryEnabled() const { in IsInquiryEnabled()
146 bool neighbor::ScanModule::impl::IsPageEnabled() const { in IsPageEnabled()
150 void neighbor::ScanModule::impl::Start() { in Start()
155 …hci_layer_->EnqueueCommand(std::move(packet), handler_->BindOnceOn(this, &impl::OnCommandComplete)… in Start()
158 void neighbor::ScanModule::impl::Stop() { in Stop()
162 neighbor::ScanModule::ScanModule() : pimpl_(std::make_unique<impl>(*this)) {} in ScanModule()