Lines Matching refs:cmdLines
112 final String[] cmdLines = getCmdLinesWithCommand(commands); in runCommandsInEnvironmentShell() local
113 …final ProcessHandler pHdl = new ProcessHandler(cmdLines, (PrintWriter) log, workDir, shortWait, pa… in runCommandsInEnvironmentShell()
123 String[] cmdLines = null; in getSrcRoot() local
125 cmdLines = new String[]{mShell, "/C", "echo SRC_ROOT=%SRC_ROOT"}; in getSrcRoot()
127 cmdLines = new String[]{mShell, "--login ", "-c ", "echo \"SRC_ROOT=$SRC_ROOT\""}; in getSrcRoot()
130 … final ProcessHandler procHdl = new ProcessHandler(cmdLines, (PrintWriter) log, null, 5000, param); in getSrcRoot()
155 String[] cmdLines = null; in getCmdLinesWithCommand() local
178 cmdLines = new String[]{mShell, "--login", "-c", "\"" + command + "\""}; in getCmdLinesWithCommand()
180 cmdLines = new String[]{mShell, "/C", "\"" + command + "\""}; in getCmdLinesWithCommand()
183 cmdLines = new String[]{mShell, "-c", command}; in getCmdLinesWithCommand()
185 return cmdLines; in getCmdLinesWithCommand()