Searched refs:commandArray (Results 1 – 2 of 2) sorted by relevance
569 String commandArray[] = null; in runProguard() local572 commandArray = createWindowsProguardConfig(command); in runProguard()575 if (commandArray == null) { in runProguard()577 commandArray = command.toArray(new String[command.size()]); in runProguard()599 for (String c : commandArray) { in runProguard()609 Process process = Runtime.getRuntime().exec(commandArray, envp); in runProguard()629 String msg = String.format(Messages.Proguard_Exec_Error, commandArray[0]); in runProguard()632 String msg = String.format(Messages.Proguard_Exec_Error, commandArray[0]); in runProguard()663 String[] commandArray = new String[3]; in createWindowsProguardConfig() local665 commandArray[0] = command.get(0); in createWindowsProguardConfig()[all …]
90 String[] commandArray = new String[1 + arguments.size()]; in launch() local91 commandArray[0] = executable.getAbsolutePath(); in launch()92 System.arraycopy(arguments.toArray(), 0, commandArray, 1, arguments.size()); in launch() local94 ProcessBuilder processBuilder = new ProcessBuilder(commandArray); in launch()