Lines Matching refs:view
183 void on_event(hci::EventView view) { in on_event() argument
184 ASSERT(view.IsValid()); in on_event()
185 LOG_INFO("Got an Event %s", EventCodeText(view.GetEventCode()).c_str()); in on_event()
187 response.set_payload(std::string(view.begin(), view.end())); in on_event()
191 void on_le_subevent(hci::LeMetaEventView view) { in on_le_subevent() argument
192 ASSERT(view.IsValid()); in on_le_subevent()
193 LOG_INFO("Got an LE Event %s", SubeventCodeText(view.GetSubeventCode()).c_str()); in on_le_subevent()
195 response.set_payload(std::string(view.begin(), view.end())); in on_le_subevent()
199 void on_complete(hci::CommandCompleteView view) { in on_complete() argument
200 ASSERT(view.IsValid()); in on_complete()
201 LOG_INFO("Got a Command complete %s", OpCodeText(view.GetCommandOpCode()).c_str()); in on_complete()
203 response.set_payload(std::string(view.begin(), view.end())); in on_complete()
207 void on_status(hci::CommandStatusView view) { in on_status() argument
208 ASSERT(view.IsValid()); in on_status()
209 LOG_INFO("Got a Command status %s", OpCodeText(view.GetCommandOpCode()).c_str()); in on_status()
211 response.set_payload(std::string(view.begin(), view.end())); in on_status()