/external/autotest/server/ |
base_utils.py | 47 return utils.sh_escape("".join(new_name)) 161 host.run('gunzip "%s"' % (utils.sh_escape(source_material))) 164 host.run('bunzip2 "%s"' % (utils.sh_escape(source_material))) 170 utils.sh_escape(os.path.dirname(source_material)), 171 utils.sh_escape(source_material),))
|
autotest.py | 134 host.run('test -x %s' % utils.sh_escape(autotest_binary)) 135 host.run('test -w %s' % utils.sh_escape(path)) 168 host.run('mkdir -p %s' % utils.sh_escape(path)) 169 host.run('test -w %s' % utils.sh_escape(path)) 308 abs_path = utils.sh_escape(abs_path) 343 host.run('mkdir -p %s' % utils.sh_escape(autodir)) 347 host.run('rm -rf %s/*' % utils.sh_escape(results_path), 430 host.run("rm -rf %s" % utils.sh_escape(autodir), ignore_status=True) [all...] |
/external/autotest/server/hosts/ |
remote.py | 55 self.run('rm -rf "%s"' % (utils.sh_escape(dir))) 303 self.run('rm -rf "%s"' % utils.sh_escape(tmpdir), ignore_status=True) 320 base = '*'.join(map(lambda x: '"%s"' % utils.sh_escape(x), 322 path = '"%s' % os.path.join(utils.sh_escape(parent), base[1:])
|
ssh_host.py | 114 '%s' % (stack, utils.sh_escape(command), command)) 131 command += ' "%s"' % utils.sh_escape(arg) 132 full_cmd = '%s "%s %s"' % (ssh_cmd, env, utils.sh_escape(command))
|
abstract_ssh.py | 226 paths = [utils.sh_escape(path) for path in paths] 277 return '%s %s "%s"' % (base_cmd, self.hostname, utils.sh_escape(cmd)) 312 result = self.run("ls \"%s\"%s" % (utils.sh_escape(path), 323 return ["\"%s\"%s" % (utils.sh_escape(path), pattern) 434 local_dest = utils.sh_escape(dest) 475 local_dest = utils.sh_escape(dest) [all...] |
/external/autotest/client/common_lib/ |
revision_control.py | 75 self.repodir = utils.sh_escape(repodir) 82 self.gitpath = utils.sh_escape(os.path.join(self.repodir,'.git')) 126 return utils.run(r'%s' % (utils.sh_escape(command)),
|
logging_config.py | 38 os.system('logger -t "autotest" "%s"' % utils.sh_escape(s))
|
utils.py | 1607 def sh_escape(command): function [all...] |
utils_unittest.py | 585 escaped_text = utils.sh_escape(text) [all...] |
/external/autotest/client/profilers/ftrace/ |
ftrace.py | 32 arg = '"%s"' % utils.sh_escape(arg)
|
/external/autotest/client/site_tests/camera_HAL3/ |
camera_HAL3.py | 54 'cat "%s"' % utils.sh_escape(self.media_profiles_path)
|
/external/autotest/client/bin/ |
local_host.py | 37 self.run('rm -rf "%s"' % (utils.sh_escape(tmp_dir)),
|
/external/autotest/client/common_lib/cros/ |
gs_cache_client.py | 107 cmd = 'ssh %s \'curl "%s"\'' % (self._hostname, utils.sh_escape(url))
|
dev_server.py | [all...] |
/external/autotest/server/site_tests/firmware_IntegratedU2F/ |
firmware_IntegratedU2F.py | 163 u2ftest_cmd = utils.sh_escape('%s %s' % (self.U2FTEST_PATH, device))
|
/external/autotest/server/cros/ |
telemetry_runner.py | 445 rsync_cmd = utils.sh_escape('rsync %s %s %s:%s' %
|
/external/autotest/site_utils/lxc/ |
container.py | 328 command = 'bash -c "%s"' % utils.sh_escape(command)
|
/external/autotest/server/cros/faft/ |
cr50_test.py | 658 ccd_open_cmd = utils.sh_escape('gsctool -a -o') [all...] |
/external/autotest/server/cros/update_engine/ |
update_engine_test.py | 414 utils.sh_escape(file_info_url))
|
/external/autotest/server/cros/network/ |
wifi_client.py | [all...] |