Lines Matching refs:tvInputEvent
151 TvInputEvent tvInputEvent; in notify() local
152 tvInputEvent.type = static_cast<TvInputEventType>(event->type); in notify()
153 tvInputEvent.deviceInfo.deviceId = event->device_info.device_id; in notify()
154 tvInputEvent.deviceInfo.type = static_cast<TvInputType>( in notify()
156 tvInputEvent.deviceInfo.portId = event->device_info.hdmi.port_id; in notify()
167 tvInputEvent.deviceInfo.cableConnectionStatus = connectionStatus; in notify()
170 tvInputEvent.deviceInfo.audioType = static_cast<AudioDevice>( in notify()
172 memset(tvInputEvent.deviceInfo.audioAddress.data(), 0, in notify()
173 tvInputEvent.deviceInfo.audioAddress.size()); in notify()
177 if (size > tvInputEvent.deviceInfo.audioAddress.size()) { in notify()
182 tvInputEvent.deviceInfo.audioAddress[i] = in notify()
186 mCallback->notify(tvInputEvent); in notify()