Home
last modified time | relevance | path

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

/external/autotest/client/common_lib/
Dbase_utils_unittest.py661 quoted_word = base_utils.sh_quote_word(text)
674 command = 'echo ' + base_utils.sh_quote_word(text)
675 nested_command = 'echo ' + base_utils.sh_quote_word(command)
Dbase_utils.py875 command = ' '.join([sh_quote_word(arg) for arg in command])
877 command = ' '.join([command] + [sh_quote_word(arg) for arg in args])
1890 def sh_quote_word(text, whitelist=SHELL_QUOTING_WHITELIST): function