Lines Matching refs:cmdLines
111 final String[] cmdLines = getCmdLinesWithCommand(commands); in runCommandsInEnvironmentShell() local
112 …final ProcessHandler pHdl = new ProcessHandler(cmdLines, (PrintWriter) log, workDir, shortWait, pa… in runCommandsInEnvironmentShell()
122 String[] cmdLines = null; in getSrcRoot() local
124 cmdLines = new String[]{mShell, "/C", "echo SRC_ROOT=%SRC_ROOT"}; in getSrcRoot()
126 cmdLines = new String[]{mShell, "--login ", "-c ", "echo \"SRC_ROOT=$SRC_ROOT\""}; in getSrcRoot()
129 … final ProcessHandler procHdl = new ProcessHandler(cmdLines, (PrintWriter) log, null, 5000, param); in getSrcRoot()
154 String[] cmdLines = null; in getCmdLinesWithCommand() local
177 cmdLines = new String[]{mShell, "--login", "-c", "\"" + command + "\""}; in getCmdLinesWithCommand()
179 cmdLines = new String[]{mShell, "/C", "\"" + command + "\""}; in getCmdLinesWithCommand()
182 cmdLines = new String[]{mShell, "-c", command}; in getCmdLinesWithCommand()
184 return cmdLines; in getCmdLinesWithCommand()