Home | History | Annotate | Download | only in utils

Lines Matching refs:check_exit_code

186     def execute(self, command, timeout=None, check_exit_code=True,
198 if check_exit_code:
459 check_exit_code=False):
481 def execute(self, command, timeout=1000, check_exit_code=True,
490 check_exit_code=check_exit_code,
680 def _gem5_shell(self, command, as_root=False, timeout=None, check_exit_code=True, sync=True): # pylint: disable=R0912
736 if check_exit_code:
738 timeout=timeout, check_exit_code=False,
827 booted = (int('0' + self._gem5_shell('getprop sys.boot_completed', check_exit_code=False).strip()) == 1)
828 anim_finished = (int(self._gem5_shell('getprop service.bootanim.exit', check_exit_code=False).strip()) == 1)