Home
last modified time | relevance | path

Searched refs:check_exit_code (Results 1 – 9 of 9) sorted by relevance

/external/devlib/devlib/utils/
Dssh.py184 def execute(self, command, timeout=None, check_exit_code=True, argument
196 if check_exit_code:
455 check_exit_code=False):
477 def execute(self, command, timeout=1000, check_exit_code=True, argument
486 check_exit_code=check_exit_code,
676 …def _gem5_shell(self, command, as_root=False, timeout=None, check_exit_code=True, sync=True): # p… argument
732 if check_exit_code:
734 timeout=timeout, check_exit_code=False,
823 …booted = (int('0' + self._gem5_shell('getprop sys.boot_completed', check_exit_code=False).strip())…
824 …im_finished = (int(self._gem5_shell('getprop service.bootanim.exit', check_exit_code=False).strip(…
Dandroid.py226 def execute(self, command, timeout=None, check_exit_code=False, argument
228 return adb_shell(self.device, command, timeout, check_exit_code,
341 def adb_shell(device, command, timeout=None, check_exit_code=False, argument
367 if check_exit_code:
/external/devlib/devlib/
Dhost.py52 def execute(self, command, timeout=None, check_exit_code=True, argument
60 ignore = None if check_exit_code else 'all'
Dtarget.py314 def execute(self, command, timeout=None, check_exit_code=True, as_root=False): argument
315 return self.conn.execute(command, timeout, check_exit_code, as_root)
374 self.execute('echo {} > \'{}\''.format(value, path), check_exit_code=False, as_root=True)
589 def _execute_util(self, command, timeout=None, check_exit_code=True, as_root=False): argument
591 return self.conn.execute(command, timeout, check_exit_code, as_root)
669 version_files = self.execute(command, check_exit_code=False).strip().split()
720 check_exit_code=False).strip().split()
951 result = self.execute('ps {}'.format(process_name[-15:]), check_exit_code=False).strip()
/external/lisa/libs/utils/android/workloads/
Djankbench.py203 while (db_adb not in self._target.execute('ls {}'.format(db_adb), check_exit_code=False)):
/external/devlib/devlib/platform/
Dgem5.py275 target.execute('reset', check_exit_code=False)
/external/lisa/libs/utils/android/
Dsystem.py61 target.target.execute(cmd, as_root=True, check_exit_code=False)
/external/devlib/doc/
Dconnection.rst43 .. method:: execute(self, command, timeout=None, check_exit_code=False, as_root=False)
51 :param check_exit_code: If ``True`` the exit code (on connected device)
Dtarget.rst220 .. method:: Target.execute(command [, timeout [, check_exit_code [, as_root]]])
228 :param check_exit_code: If ``True`` (the default) the exit code (on target)