Home | History | Annotate | Download | only in brillo_CrashLogging

Lines Matching refs:host

12 # Number of seconds to wait for host.run commands to timeout.
22 def run_once(self, host=None):
25 @param host: host object representing the device under test.
27 if host is None:
29 'a host')
30 self.host = host
33 self.host.run('rm /data/misc/crash_reporter/crash/*',
37 result = self.host.run('pgrep %s' % TARGET_PROCESS,
42 self.host.run('kill -SIGSEGV %s' % pid, timeout=COMMAND_TIMEOUT_SECONDS)
45 self.host.run('kill -SIGSEGV %s' % pid, timeout=COMMAND_TIMEOUT_SECONDS,
50 logs = self.host.run_output(
56 'host error or because the directory '