Lines Matching refs:EventView
49 using bluetooth::hci::EventView;
130 void drop(EventView event) { in drop()
164 void on_command_status(EventView event) { in on_command_status()
178 void on_command_complete(EventView event) { in on_command_complete()
183 void handle_command_response(EventView event, std::string logging_id) { in handle_command_response()
228 CommandCompleteView::Create(EventView::Create(PacketView<kLittleEndian>(complete))); in handle_command_response()
326 void register_event(EventCode event, ContextualCallback<void(EventView)> handler) { in register_event()
395 void on_hci_event(EventView event) { in on_hci_event()
468 void on_hardware_error(EventView event) { in on_hardware_error()
482 void on_le_meta_event(EventView event) { in on_le_meta_event()
493 void on_vs_event(EventView event) { in on_vs_event()
510 std::map<EventCode, ContextualCallback<void(EventView)>> event_handlers_;
538 EventView event = EventView::Create(packet); in hciEventReceived()
597 void HciLayer::RegisterEventHandler(EventCode event, ContextualCallback<void(EventView)> handler) { in RegisterEventHandler()
622 void HciLayer::on_disconnection_complete(EventView event_view) { in on_disconnection_complete()
634 void HciLayer::on_connection_request(EventView event_view) { in on_connection_request()
675 void HciLayer::on_read_remote_version_complete(EventView event_view) { in on_read_remote_version_complete()
695 ContextualCallback<void(EventView)> event_handler, in GetAclConnectionInterface()
762 SecurityInterface* HciLayer::GetSecurityInterface(ContextualCallback<void(EventView)> event_handler… in GetSecurityInterface()