Lines Matching full:hdmi
415 """The abstraction for HDMI cable."""
418 # Chameleon through HDMI cable.
424 self.name = 'HDMI cable'
427 'Create an HDMIWidgetLink. Do nothing because HDMI cable'
432 """Plugs input of HDMI cable to the widget using widget handler.
437 self._check_widget_id(ids.CrosIds.HDMI, widget)
439 'Plug HDMI cable input. Do nothing because HDMI cable should '
444 """Unplugs input of HDMI cable from the widget using widget handler.
449 self._check_widget_id(ids.CrosIds.HDMI, widget)
451 'Unplug HDMI cable input. Do nothing because HDMI cable should '
456 """Plugs output of HDMI cable to the widget using widget handler.
460 @raises: WidgetLinkError if widget handler interface is not HDMI.
462 self._check_widget_id(ids.ChameleonIds.HDMI, widget)
463 # HDMI plugging emulation is done on Chameleon port.
465 'Plug HDMI cable output. This is emulated on Chameleon port')
471 """Unplugs output of HDMI cable from the widget using widget handler.
475 @raises: WidgetLinkError if widget handler interface is not HDMI.
477 self._check_widget_id(ids.ChameleonIds.HDMI, widget)
478 # HDMI plugging emulation is done on Chameleon port.
480 'Unplug HDMI cable output. This is emulated on Chameleon port')