Home
last modified time | relevance | path

Searched refs:quote (Results 1 – 20 of 20) sorted by relevance

/tools/acloud/internal/lib/
Dcvd_utils.py675 ssh_obj.Run(shlex.quote(
677 shlex.quote(
693 shlex.quote(f"readlink -n -e {remote_link} || true"))
706 ssh_obj.Run(shlex.quote(
708 shlex.quote(
760 upload_deadline = ssh_obj.Run(shlex.quote(
762 shlex.quote(timestamp_cmd))).strip()
771 lambda : ssh_obj.Run(shlex.quote(
772 f"flock {remote_args_path} -c " + shlex.quote(wait_cmd))),
779 args_str = ssh_obj.Run(shlex.quote(
[all …]
/tools/repohooks/rh/
Dshell_unittest.py89 return rh.shell.unquote(rh.shell.quote(s))
91 self._testData(rh.shell.quote, tests_quote)
100 self.assertEqual(rh.shell.quote(Path('/')), '/')
108 self.assertEqual(rh.shell.quote(arg), exp)
Dshell.py42 def quote(s): function
151 return ' '.join(quote(arg) for arg in cmd)
/tools/test/connectivity/acts/framework/acts/controllers/utils_lib/commands/
Dshell.py139 self.run('grep %s %s' % (shlex.quote(search_string), file_name))
162 return self.run('echo %s > %s' % (shlex.quote(data), file_name))
171 return self.run('echo %s >> %s' % (shlex.quote(data), file_name))
/tools/security/remote_provisioning/hwtrust/
DCargo.lock125 "quote",
340 "quote",
377 "quote",
389 "quote",
403 name = "quote"
453 "quote",
481 "quote",
510 "quote",
/tools/tradefederation/core/util_apps/WifiUtil/src/com/android/tradefed/utils/wifi/
DWifiConnector.java72 private static String quote(String str) { in quote() method in WifiConnector
141 config.SSID = quote(ssid); in addNetwork()
153 config.preSharedKey = quote(psk); in addNetwork()
171 if (quote(ssid).equals(config.SSID)) { in getNetworkId()
/tools/test/connectivity/acts/framework/acts/controllers/
Dadb.py82 adb_cmd = [shlex.quote(adb_path)]
261 shlex.quote(command),
266 return self._exec_adb_cmd_nb('shell', shlex.quote(command))
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DHostTest.java1146 String regex = "(?<!" + Pattern.quote(esc) + ")" + Pattern.quote(delim); in setOptionToLoadedObject()
1156 Pattern.quote(esc) + Pattern.quote(delim), delim); in setOptionToLoadedObject()
1167 value = fields[1].replaceAll(Pattern.quote(esc) + Pattern.quote(delim), delim); in setOptionToLoadedObject()
1192 String regex = "(?<!" + Pattern.quote(esc) + ")" + Pattern.quote(delim); in injectOption()
1193 String escDelim = Pattern.quote(esc) + Pattern.quote(delim); in injectOption()
/tools/test/connectivity/acts/framework/acts/controllers/ap_lib/
Dradvd.py95 self._radvd_binary, shlex.quote(self._config_file),
96 shlex.quote(self._pid_file), self._log_file)
/tools/tradefederation/core/src/com/android/tradefed/device/
DWifiHelper.java630 quote(ssid), networkType, quote(psk)); in connectToNetworkV2()
797 sb.append(quote(arg.getValue())); in buildWifiUtilCmdFromMap()
833 private static String quote(String str) { in quote() method in WifiHelper
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/instrumentation/device/command/
Dinstrumentation_command_builder.py120 call.append(shlex.quote(value))
/tools/tradefederation/core/src/com/android/tradefed/util/
DClassPathScanner.java250 return classPath.split(Pattern.quote(File.pathSeparator)); in getClassPath()
DMetricUtility.java99 .replaceFirst(Pattern.quote(mTestIterationSeparator) + "\\d+", ""); in storeTestMetrics()
/tools/test/mobly_extensions/tools/results_uploader/src/
Dresultstore_client.py180 self._encoded_target_id = urllib.parse.quote(self._target_id, safe='')
/tools/asuite/atest/
Datest_utils_unittest.py654 self.assertEqual(atest_utils.quote(target_str), expected_str)
655 self.assertEqual(atest_utils.quote('TEST_P224'), 'TEST_P224')
Datest_main.py240 args.custom_args.append(atest_utils.quote(arg))
Datest_utils.py1269 def quote(input_str): function
Dbazel_mode.py2053 bazel_args_str = ' '.join(shlex.quote(arg) for arg in bazel_args)
/tools/repohooks/
DREADME.md103 force your own quote handling.
/tools/repohooks/tools/
Dcpplint.py1959 head, quote, tail = match.groups()
1961 if quote == '"':