Lines Matching refs:impl

46 struct NameModule::impl {  struct in bluetooth::neighbor::NameModule
59 impl(const NameModule& name_module);
80 neighbor::NameModule::impl::impl(const neighbor::NameModule& module) : module_(module) {} in impl() function in bluetooth::neighbor::neighbor::NameModule::impl
82 void neighbor::NameModule::impl::EnqueueCommandComplete(std::unique_ptr<hci::CommandPacketBuilder> … in EnqueueCommandComplete()
83 …hci_layer_->EnqueueCommand(std::move(command), handler_->BindOnceOn(this, &impl::OnCommandComplete… in EnqueueCommandComplete()
86 void neighbor::NameModule::impl::EnqueueCommandStatus(std::unique_ptr<hci::CommandPacketBuilder> co… in EnqueueCommandStatus()
87 …hci_layer_->EnqueueCommand(std::move(command), handler_->BindOnceOn(this, &impl::OnCommandStatus)); in EnqueueCommandStatus()
90 void neighbor::NameModule::impl::OnCommandComplete(hci::CommandCompleteView view) { in OnCommandComplete()
106 void neighbor::NameModule::impl::OnCommandStatus(hci::CommandStatusView status) { in OnCommandStatus()
121 void neighbor::NameModule::impl::OnEvent(hci::EventPacketView view) { in OnEvent()
139 void neighbor::NameModule::impl::Start() { in Start()
144 … hci::EventCode::REMOTE_NAME_REQUEST_COMPLETE, handler_->BindOn(this, &NameModule::impl::OnEvent)); in Start()
147 void neighbor::NameModule::impl::Stop() { in Stop()
151 void neighbor::NameModule::impl::ReadRemoteNameRequest( in ReadRemoteNameRequest()
174 void neighbor::NameModule::impl::CancelRemoteNameRequest( in CancelRemoteNameRequest()
193 neighbor::NameModule::NameModule() : pimpl_(std::make_unique<impl>(*this)) {} in NameModule()
209 &NameModule::impl::ReadRemoteNameRequest, in ReadRemoteNameRequest()
224 &NameModule::impl::CancelRemoteNameRequest, in CancelRemoteNameRequest()