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

/opengrok/src/org/opensolaris/opengrok/history/
H A DGitHistoryParser.java61 * @param input The output from the process
67 process(in);
71 private void process(BufferedReader in) throws IOException { method in class:GitHistoryParser
H A DClearCaseRepository.java121 Process process = null;
137 process = Runtime.getRuntime().exec(argv, null, directory);
139 drainStream(process.getInputStream());
141 if (waitFor(process) != 0) {
163 if (process != null) {
165 process.exitValue();
167 // the process is still running??? just kill it..
168 process.destroy();
229 Process process = null;
231 process
262 waitFor(Process process) argument
[all...]

Completed in 2038 milliseconds