Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/sandbox/
DSandboxConfigDump.java110 List<String> argList = new ArrayList<>(Arrays.asList(args)); in parse() local
111 DumpCmd cmd = DumpCmd.valueOf(argList.remove(0)); in parse()
112 File resFile = new File(argList.remove(0)); in parse()
122 replaceKeystore(keyClient, argList); in parse()
125 factory.createConfigurationFromArgs(argList.toArray(new String[0]), cmd); in parse()
215 public static void replaceKeystore(IKeyStoreClient keyClient, List<String> argList) { in replaceKeystore() argument
217 for (int i = 0; i < argList.size(); i++) { in replaceKeystore()
218 Matcher m = USE_KEYSTORE_REGEX.matcher(argList.get(i)); in replaceKeystore()
222 String newValue = argList.get(i).replaceAll("USE_KEYSTORE@" + key, keyValue); in replaceKeystore()
223 argList.set(i, newValue); in replaceKeystore()
DTradefedSandboxRunner.java103 List<String> argList = new ArrayList<>(Arrays.asList(args)); in run() local
106 if (argList.size() < 2) { in run()
113 File contextFile = new File(argList.remove(0)); in run()
147 context, new StubScheduledInvocationListener(), argList.toArray(new String[0])); in run()
/tools/tradefederation/core/src/com/android/tradefed/device/recovery/
DRunConfigDeviceRecovery.java80 List<String> argList = new ArrayList<>(); in recoverDevices() local
81 argList.add(mRecoveryConfigName); in recoverDevices()
89 argList.addAll(deviceExtraArgs); in recoverDevices()
93 argList.addAll(Arrays.asList(extraArgs)); in recoverDevices()
103 CLog.d("Triggering recovery invocation on '%s' with '%s'", serial, argList); in recoverDevices()
109 argList.toArray(new String[0])); in recoverDevices()
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/
DOptions.kt1069 val argList = mutableListOf<String>() in findAndroidJars() constant
1072 argList.add(args[index + 1]) in findAndroidJars()