Home | History | Annotate | Download | only in cros

Lines Matching refs:host

11 def get_install_path(filename, host=None):
16 @param host Host object representing the remote machine.
21 if host is not None:
22 run = host.run
34 result = host.run('ls %s 2> /dev/null' % ' '.join(glob_list),
40 def must_be_installed(cmd, host=None):
46 @param host Host object representing the remote machine.
51 if host is not None:
52 run = host.run
59 alternate_path = get_install_path(cmd_base, host=host)
64 if host is not None:
65 error_msg += ' on %s' % host.hostname