Home | History | Annotate | Download | only in build

Lines Matching refs:cmdLine

41   private final String[] cmdLine;
108 cmdLine = new String[args.length + 1];
109 System.arraycopy(args, 0, cmdLine, 1, args.length);
111 cmdLine[0] = exec.getAbsolutePath();
115 cmdLine = new String[args.length + 1];
116 System.arraycopy(args, 0, cmdLine, 1, args.length);
118 cmdLine[0] = exec;
122 cmdLine = new String[1];
123 cmdLine[0] = exec.getAbsolutePath();
126 public ExecuteFile(@Nonnull String[] cmdLine) {
127 this.cmdLine = cmdLine.clone();
130 public ExecuteFile(@Nonnull String cmdLine) throws IOException {
131 StringReader reader = new StringReader(cmdLine);
148 this.cmdLine = tokens.toArray(new String[0]);
160 for (String arg : cmdLine) {
178 proc = Runtime.getRuntime().exec(cmdLine, null, workDir);