Home
last modified time | relevance | path

Searched refs:sh_quote_word (Results 1 – 4 of 4) sorted by relevance

/external/autotest/client/site_tests/camera_HAL3Perf/
Dcamera_HAL3Perf.py98 cmd = ' '.join(map(utils.sh_quote_word, cmd))
/external/autotest/server/site_tests/tast/
Dtast.py252 ' '.join([utils.sh_quote_word(a) for a in cmd]))
292 expr = ' '.join([utils.sh_quote_word(a) for a in self._test_exprs])
/external/autotest/client/common_lib/
Dutils_unittest.py671 quoted_word = utils.sh_quote_word(text)
684 command = 'echo ' + utils.sh_quote_word(text)
685 nested_command = 'echo ' + utils.sh_quote_word(command)
Dutils.py736 command = ' '.join([sh_quote_word(arg) for arg in command])
738 command = ' '.join([command] + [sh_quote_word(arg) for arg in args])
1629 def sh_quote_word(text, whitelist=SHELL_QUOTING_WHITELIST): function