Lines Matching refs:unplug
285 def unplug(self):
286 """Unplug this widget."""
335 def unplug(self):
337 self._port.unplug()
544 _plug_handler: A PlugHandler for performing plug and unplug.
552 @param plug_handler: A PlugHandler object for plug and unplug.
565 def unplug(self):
567 logging.info('CrosWidgetHandler: unplug')
568 self._plug_handler.unplug()
572 """This class abstracts plug/unplug action for widgets on Cros device.
574 This class will be used by CrosWidgetHandler when performinng plug/unplug.
586 def unplug(self):
588 raise NotImplementedError('unplug() not implemented.')
592 """A dummy class that does not do anything for plug() or unplug().
595 performing plug and unplug.
604 def unplug(self):
605 """Does nothing for unplug."""
606 logging.info('DummyPlugHandler: unplug')
610 """This class abstracts plug/unplug action with motor on Cros device.
630 def unplug(self):
632 self._jack_plugger.unplug()
636 """This class abstracts plug/unplug action for USB widgets on Cros device.
659 def unplug(self):
661 self._usb_facade.unplug()