Searched refs:process (Results 1 - 10 of 10) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/history/
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...]
H A DSCCSRepository.java105 Process process = null;
108 process = pb.start();
109 in = new BufferedReader(new InputStreamReader(process.getInputStream()));
127 if (process != null) {
129 process.exitValue();
131 process.destroy();
162 Process process = null;
165 process = pb.start();
166 in = new BufferedReader(new InputStreamReader(process.getInputStream()));
188 if (process !
[all...]
H A DMercurialRepository.java299 Process process = null;
314 process = Runtime.getRuntime().exec(argv, null, directory);
318 in = process.getInputStream();
333 if (process != null) {
335 process.exitValue();
337 // the process is still running??? just kill it..
338 process.destroy();
371 Process process = null;
393 process = pb.start();
394 in = new BufferedReader(new InputStreamReader(process
[all...]
H A DBazaarRepository.java108 Process process = null;
115 process = Runtime.getRuntime().exec(argv, null, directory);
119 in = process.getInputStream();
135 if (process != null) {
137 process.exitValue();
139 // the process is still running??? just kill it..
140 process.destroy();
H A DCVSRepository.java191 Process process = null;
201 process = Runtime.getRuntime().exec(argv, null, new File(parent));
205 in = process.getInputStream();
220 if (process != null) {
222 process.exitValue();
224 // the process is still running??? just kill it..
225 process.destroy();
H A DMonotoneRepository.java77 Process process = null;
86 process = Runtime.getRuntime().exec(argv, null, directory);
90 in = process.getInputStream();
105 if (process != null) {
107 process.exitValue();
109 // the process is still running??? just kill it..
110 process.destroy();
H A DGitRepository.java323 Process process = null;
330 process = Runtime.getRuntime().exec(argv, null, directory);
332 in = process.getInputStream();
343 process.destroy();
346 process = Runtime.getRuntime().exec(argv, null, directory);
347 in = process.getInputStream();
361 if (process != null) {
363 process.exitValue();
365 // the process is still running??? just kill it..
366 process
[all...]
H A DSubversionRepository.java160 logger.warning("IOException reading from svn process: "
350 Process process = null;
354 process = pb.start();
355 in = new BufferedInputStream(process.getInputStream());
368 if (process != null) {
370 process.exitValue();
372 // the process is still running??? just kill it..
373 process.destroy();
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);
/opengrok-jel/src/org/opensolaris/opengrok/util/
H A DExecutor.java71 * @param workingDirectory The directory the process should have as the
83 * @return The exit code of the process
93 * @return The exit code of the process
107 * @return The exit code of the process
126 Process process = null;
128 process = processBuilder.start();
130 final InputStream errorStream = process.getErrorStream();
140 log.warning("Error during process pipe listening: "
149 handler.processStream(process.getInputStream());
151 ret = process
[all...]

Completed in 1332 milliseconds