OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StreamGobbler
(Results
1 - 6
of
6
) sorted by null
/external/ganymed-ssh2/examples/
StdoutAndStderr.java
12
import ch.ethz.ssh2.
StreamGobbler
;
45
InputStream stdout = new
StreamGobbler
(sess.getStdout());
46
InputStream stderr = new
StreamGobbler
(sess.getStderr());
Basic.java
12
import ch.ethz.ssh2.
StreamGobbler
;
56
InputStream stdout = new
StreamGobbler
(sess.getStdout());
BasicWithHTTPProxy.java
13
import ch.ethz.ssh2.
StreamGobbler
;
67
InputStream stdout = new
StreamGobbler
(sess.getStdout());
PublicKeyAuthentication.java
13
import ch.ethz.ssh2.
StreamGobbler
;
48
InputStream stdout = new
StreamGobbler
(sess.getStdout());
UsingKnownHosts.java
14
import ch.ethz.ssh2.
StreamGobbler
;
56
InputStream stdout = new
StreamGobbler
(sess.getStdout());
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
StreamGobbler.java
11
* A <code>
StreamGobbler
</code> is an InputStream that uses an internal worker
26
* If you do not call the
StreamGobbler
's <code>read()</code> method often enough
31
* The term "
StreamGobbler
" was taken from an article called "When Runtime.exec() won't",
38
public class
StreamGobbler
extends InputStream
121
public
StreamGobbler
(InputStream is)
139
throw new IOException("This
StreamGobbler
is closed.");
174
throw new IOException("This
StreamGobbler
is closed.");
219
throw new IOException("This
StreamGobbler
is closed.");
Completed in 205 milliseconds