Home | History | Annotate | Download | only in chameleon

Lines Matching defs:plug

283     def plug(self):
284 """Plug this widget."""
334 def plug(self):
336 self._port.plug()
594 _plug_handler: A PlugHandler for performing plug and unplug.
602 @param plug_handler: A PlugHandler object for plug and unplug.
609 def plug(self):
611 logging.info('CrosWidgetHandler: plug')
612 self._plug_handler.plug()
622 """This class abstracts plug/unplug action for widgets on Cros device.
624 This class will be used by CrosWidgetHandler when performinng plug/unplug.
631 def plug(self):
633 raise NotImplementedError('plug() not implemented.')
642 """A dummy class that does not do anything for plug() or unplug().
645 performing plug and unplug.
649 def plug(self):
650 """Does nothing for plug."""
651 logging.info('DummyPlugHandler: plug')
660 """This class abstracts plug/unplug action with motor on Cros device.
675 def plug(self):
677 self._jack_plugger.plug()
769 @param plug_handler: A PlugHandler object for plug and unplug.