Home
last modified time | relevance | path

Searched refs:_command (Results 1 – 11 of 11) sorted by relevance

/external/autotest/client/site_tests/graphics_Drm/
Dgraphics_Drm.py30 self._command = command
31 if self._command is None:
32 self._command = name
80 self._command,
87 logging.info('Passed: %s', self._command)
89 % (self._command, cmd_result.duration))
93 % (self._command, self._opts['timeout']))
97 logging.error('Failed: %s (exit=%d)' % (self._command,
103 % self._command)
/external/autotest/client/common_lib/cros/
Dprocess_watcher.py30 self._command = ' '.join([command] + list(args))
31 if '"' in self._command:
40 command = self._command
47 self._run('%s%s >/dev/null 2>&1 &' % (prefix, self._command))
56 process_utils.pkill_process(self._command,
/external/python/cpython3/Tools/msi/bundle/bootstrap/
DPythonBootstrapperApplication.cpp331 OnPlan(_command.action); in OnCommand()
535 if (BOOTSTRAPPER_RESTART_PROMPT == _command.restart) { in SuccessPage_Show()
567 if (_command.action != BOOTSTRAPPER_ACTION_INSTALL || in SuccessPage_Show()
641 if (_restartRequired && BOOTSTRAPPER_RESTART_PROMPT == _command.restart) { in FailurePage_Show()
756 if (_command.action == BOOTSTRAPPER_ACTION_INSTALL) { in OnDetectRelatedBundle()
835 if (BOOTSTRAPPER_DISPLAY_FULL > _command.display || in OnDetectComplete()
836 BOOTSTRAPPER_ACTION_LAYOUT == _command.action || in OnDetectComplete()
837 BOOTSTRAPPER_ACTION_UNINSTALL == _command.action || in OnDetectComplete()
838 BOOTSTRAPPER_RESUME_TYPE_REBOOT == _command.resumeType) { in OnDetectComplete()
840 ::PostMessageW(_hWnd, WM_PYBA_PLAN_PACKAGES, 0, _command.action); in OnDetectComplete()
[all …]
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_textview.py150 def _command(): function
153 button = Button(root, text='BUTTON', command=_command)
163 def _command(): function
167 button = Button(root, text='BUTTON', command=_command)
/external/mesa3d/src/gallium/state_trackers/clover/core/
Devent.cpp126 _queue(q), _command(command), _fence(NULL) {
163 return _command; in command()
Devent.hpp140 cl_command_type _command; member in clover::hard_event
/external/toolchain-utils/automation/common/
Dcommand.py44 self._command = command
71 return str(Chain(self._prefix, self._command, self._suffix))
/external/autotest/site_utils/lxc/
Dcontainer.py551 _command = ("sudo isolated download -isolated {sha} -I {server}"
554 return utils.run(_command.format(
/external/python/cpython2/Lib/
Dimaplib.py834 def _command(self, name, *args): member in IMAP4
860 if type(literal) is type(self._command):
1091 return self._command_complete(name, self._command(name, *args))
/external/python/cpython3/Lib/
Dimaplib.py937 def _command(self, name, *args): member in IMAP4
966 if type(literal) is type(self._command):
1196 return self._command_complete(name, self._command(name, *args))
Dpdb.py1584 for _command in _help_order:
1585 __doc__ += getattr(Pdb, 'do_' + _command).__doc__.strip() + '\n\n'
1588 del _help_order, _command