• Home
  • Raw
  • Download

Lines Matching refs:view

82   void OnCommandComplete(hci::CommandCompleteView view);
86 void OnCommandCompleteSync(hci::CommandCompleteView view);
88 void OnEvent(hci::EventView view);
100 void neighbor::InquiryModule::impl::OnCommandCompleteSync(hci::CommandCompleteView view) { in OnCommandCompleteSync() argument
101 OnCommandComplete(view); in OnCommandCompleteSync()
106 void neighbor::InquiryModule::impl::OnCommandComplete(hci::CommandCompleteView view) { in OnCommandComplete() argument
107 switch (view.GetCommandOpCode()) { in OnCommandComplete()
109 auto packet = hci::InquiryCancelCompleteView::Create(view); in OnCommandComplete()
115 auto packet = hci::PeriodicInquiryModeCompleteView::Create(view); in OnCommandComplete()
121 auto packet = hci::ExitPeriodicInquiryModeCompleteView::Create(view); in OnCommandComplete()
127 auto packet = hci::WriteInquiryModeCompleteView::Create(view); in OnCommandComplete()
133 auto packet = hci::ReadInquiryModeCompleteView::Create(view); in OnCommandComplete()
140 auto packet = hci::ReadInquiryResponseTransmitPowerLevelCompleteView::Create(view); in OnCommandComplete()
147 auto packet = hci::WriteInquiryScanActivityCompleteView::Create(view); in OnCommandComplete()
153 auto packet = hci::ReadInquiryScanActivityCompleteView::Create(view); in OnCommandComplete()
161 auto packet = hci::WriteInquiryScanTypeCompleteView::Create(view); in OnCommandComplete()
167 auto packet = hci::ReadInquiryScanTypeCompleteView::Create(view); in OnCommandComplete()
174 LOG_WARN("Unhandled command:%s", hci::OpCodeText(view.GetCommandOpCode()).c_str()); in OnCommandComplete()
197 void neighbor::InquiryModule::impl::OnEvent(hci::EventView view) { in OnEvent() argument
198 switch (view.GetEventCode()) { in OnEvent()
200 auto packet = hci::InquiryCompleteView::Create(view); in OnEvent()
209 auto packet = hci::InquiryResultView::Create(view); in OnEvent()
216 auto packet = hci::InquiryResultWithRssiView::Create(view); in OnEvent()
223 auto packet = hci::ExtendedInquiryResultView::Create(view); in OnEvent()
236 LOG_ERROR("Unhandled event:%s", hci::EventCodeText(view.GetEventCode()).c_str()); in OnEvent()