Searched defs:process (Results 1 - 2 of 2) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DGitHistoryParser.java63 * @param input The output from the process
71 process(in);
77 private void process(BufferedReader in) throws IOException { method in class:GitHistoryParser
126 logger.log(Level.FINE, "process", pe);
187 logger.log(Level.FINE, "process", pe);
H A DClearCaseRepository.java122 Process process = null;
137 process = Runtime.getRuntime().exec(argv, null, directory);
139 drainStream(process.getInputStream());
141 if(waitFor(process) != 0) {
164 if (process != null) {
166 process.exitValue();
168 // the process is still running??? just kill it..
169 process.destroy();
223 Process process = null;
226 process
259 waitFor(Process process) argument
[all...]

Completed in 8 milliseconds