Home
last modified time | relevance | path

Searched refs:_command (Results 1 – 13 of 13) 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
79 self._command,
86 logging.info('Passed: %s', self._command)
88 % (self._command, cmd_result.duration))
92 % (self._command, self._opts['timeout']))
96 logging.error('Failed: %s (exit=%d)' % (self._command,
102 % self._command)
/external/lisa/libs/wlgen/wlgen/
Dworkload.py230 _command = self.command
232 if not _command:
241 _command = '{} {}'\
242 .format(taskset_cmd, _command)
246 _command = self.target.cgroups.run_into_cmd(self.cgroup,
247 _command)
264 self._log.debug('WlGen [background]: %s', _command)
265 self.target.background(_command, as_root=as_root)
271 self._log.info(' %s', _command)
273 results = self.target.execute(_command, as_root=as_root)
/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.cpp339 OnPlan(_command.action); in OnCommand()
543 if (BOOTSTRAPPER_RESTART_PROMPT == _command.restart) { in SuccessPage_Show()
575 if (_command.action != BOOTSTRAPPER_ACTION_INSTALL || in SuccessPage_Show()
649 if (_restartRequired && BOOTSTRAPPER_RESTART_PROMPT == _command.restart) { in FailurePage_Show()
764 if (_command.action == BOOTSTRAPPER_ACTION_INSTALL) { in OnDetectRelatedBundle()
843 if (BOOTSTRAPPER_DISPLAY_FULL > _command.display || in OnDetectComplete()
844 BOOTSTRAPPER_ACTION_LAYOUT == _command.action || in OnDetectComplete()
845 BOOTSTRAPPER_ACTION_UNINSTALL == _command.action || in OnDetectComplete()
846 BOOTSTRAPPER_RESUME_TYPE_REBOOT == _command.resumeType) { in OnDetectComplete()
848 ::PostMessageW(_hWnd, WM_PYBA_PLAN_PACKAGES, 0, _command.action); in OnDetectComplete()
[all …]
/external/syslinux/gpxe/src/drivers/infiniband/
Darbel.h462 #define ARBEL_HCR_OPCODE( _command ) ( (_command) & 0xfff ) argument
463 #define ARBEL_HCR_IN_LEN( _command ) ( ( (_command) >> 12 ) & 0x7fc ) argument
464 #define ARBEL_HCR_OUT_LEN( _command ) ( ( (_command) >> 21 ) & 0x7fc ) argument
Dhermon.h588 #define HERMON_HCR_OPCODE( _command ) ( (_command) & 0xfff ) argument
589 #define HERMON_HCR_IN_LEN( _command ) ( ( (_command) >> 12 ) & 0x7fc ) argument
590 #define HERMON_HCR_OUT_LEN( _command ) ( ( (_command) >> 21 ) & 0x7fc ) argument
/external/mesa3d/src/gallium/state_trackers/clover/core/
Devent.cpp121 _queue(q), _command(command), _fence(NULL) {
158 return _command; in command()
Devent.hpp138 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/python/cpython2/Lib/
Dimaplib.py831 def _command(self, name, *args): member in IMAP4
857 if type(literal) is type(self._command):
1088 return self._command_complete(name, self._command(name, *args))
/external/python/cpython3/Lib/
Dimaplib.py929 def _command(self, name, *args): member in IMAP4
958 if type(literal) is type(self._command):
1188 return self._command_complete(name, self._command(name, *args))
Dpdb.py1562 for _command in _help_order:
1563 __doc__ += getattr(Pdb, 'do_' + _command).__doc__.strip() + '\n\n'
1566 del _help_order, _command
/external/devlib/devlib/utils/
Dssh.py194 _command = '({}); __devlib_ec=$?; echo; echo $__devlib_ec'.format(command)
196 _command, timeout, as_root, strip_colors)