Searched refs:argList (Results 1 – 4 of 4) sorted by relevance
110 List<String> argList = new ArrayList<>(Arrays.asList(args)); in parse() local111 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() argument217 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()
103 List<String> argList = new ArrayList<>(Arrays.asList(args)); in run() local106 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()
80 List<String> argList = new ArrayList<>(); in recoverDevices() local81 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()
1069 val argList = mutableListOf<String>() in findAndroidJars() constant1072 argList.add(args[index + 1]) in findAndroidJars()