/tools/acloud/internal/lib/ |
D | cvd_utils.py | 675 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/ |
D | shell_unittest.py | 89 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)
|
D | shell.py | 42 def quote(s): function 151 return ' '.join(quote(arg) for arg in cmd)
|
/tools/test/connectivity/acts/framework/acts/controllers/utils_lib/commands/ |
D | shell.py | 139 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/ |
D | Cargo.lock | 125 "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/ |
D | WifiConnector.java | 72 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/ |
D | adb.py | 82 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/ |
D | HostTest.java | 1146 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/ |
D | radvd.py | 95 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/ |
D | WifiHelper.java | 630 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/ |
D | instrumentation_command_builder.py | 120 call.append(shlex.quote(value))
|
/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | ClassPathScanner.java | 250 return classPath.split(Pattern.quote(File.pathSeparator)); in getClassPath()
|
D | MetricUtility.java | 99 .replaceFirst(Pattern.quote(mTestIterationSeparator) + "\\d+", ""); in storeTestMetrics()
|
/tools/test/mobly_extensions/tools/results_uploader/src/ |
D | resultstore_client.py | 180 self._encoded_target_id = urllib.parse.quote(self._target_id, safe='')
|
/tools/asuite/atest/ |
D | atest_utils_unittest.py | 654 self.assertEqual(atest_utils.quote(target_str), expected_str) 655 self.assertEqual(atest_utils.quote('TEST_P224'), 'TEST_P224')
|
D | atest_main.py | 240 args.custom_args.append(atest_utils.quote(arg))
|
D | atest_utils.py | 1269 def quote(input_str): function
|
D | bazel_mode.py | 2053 bazel_args_str = ' '.join(shlex.quote(arg) for arg in bazel_args)
|
/tools/repohooks/ |
D | README.md | 103 force your own quote handling.
|
/tools/repohooks/tools/ |
D | cpplint.py | 1959 head, quote, tail = match.groups() 1961 if quote == '"':
|