HomeSort by relevance Sort by last modified time
    Searched refs:BgJob (Results 1 - 14 of 14) sorted by null

  /external/autotest/client/common_lib/cros/
test_webrtc_peer_connection.py 299 utils.BgJob('top -b -d %d -n %d -w 512 -c > %s/top_output.txt'
301 utils.BgJob('iostat -x %d %d > %s/iostat_output.txt'
303 utils.BgJob('for i in $(seq %d);'
chromedriver.py 195 self.bg_job = utils.BgJob(chromedriver_args, stderr_level=logging.DEBUG)
  /external/autotest/client/profilers/blktrace/
blktrace.py 53 self.blktrace_job = utils.BgJob('%s /dev/%s' % (self.blktrace, device))
  /external/autotest/client/profilers/ftrace/
ftrace.py 26 Shell escape the command for BgJob. grmbl.
98 self.record_job = utils.BgJob(self.join_command(cmd),
  /external/autotest/client/site_tests/hardware_MultiReaderPowerConsumption/
hardware_MultiReaderPowerConsumption.py 66 utils.BgJob('tail -f %s --pid=%s > /dev/null'
  /external/autotest/client/site_tests/login_LogoutProcessCleanup/
login_LogoutProcessCleanup.py 40 self.pid_su = utils.BgJob('su chronos -c "%s"' % self.command)
41 # Get pid of bash sub-process. Even though utils.BgJob() has exited,
  /external/autotest/server/cros/
tradefed_utils.py 82 jobs = [common_utils.BgJob(
factory_install_test.py 218 # TODO(jsalz): Add cwd to BgJob rather than including the 'cd' in the
220 bg_job = utils.BgJob(
  /external/autotest/server/hosts/
ssh_multiplex.py 97 self._master_job = utils.BgJob(
  /external/autotest/server/site_tests/firmware_IntegratedU2F/
firmware_IntegratedU2F.py 168 self.u2ftest_job = utils.BgJob(full_ssh_command,
  /external/autotest/server/cros/multimedia/
remote_facade_factory.py 209 self._log_saving_job = utils.BgJob(full_command,
  /external/autotest/server/cros/faft/
cr50_test.py 662 self._ccd_open_job = utils.BgJob(full_ssh_cmd,
    [all...]
  /external/autotest/client/common_lib/
utils.py 120 return '%s BgJob "%s" ' % (base_string, nickname)
126 # semantics problem in BgJob. See crbug.com/279312
127 class BgJob(object):
132 """Create and start a new BgJob.
134 This constructor creates a new BgJob, and uses Popen to start a new
138 After starting a new BgJob, use output_prepare to connect the process's
164 @param verbose: Boolean, make BgJob logging more verbose.
194 'unjoinable BgJob')
248 stdout or stderr stream, and writes the resulting data to the BgJob's
264 'a job with unjoinable BgJob')
    [all...]
utils_unittest.py 840 bg_job = utils.BgJob('echo "hello world"')
    [all...]

Completed in 633 milliseconds