Searched refs:getInputStream (Results 1 - 25 of 648) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/net/www/content/text/
H A Dplain.java42 InputStream is = uc.getInputStream();
43 return new PlainTextInputStream(uc.getInputStream());
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DReleaseInflater.java40 InputStream in1 = zf.getInputStream(e);
47 InputStream in2 = zf.getInputStream(e);
48 InputStream in3 = zf.getInputStream(e);
H A DAvailable.java33 if (e.getSize() != zf.getInputStream(e).available()) {
H A DFinalizeInflater.java41 read(zf.getInputStream(ze));
46 read(zf.getInputStream(ze));
H A DReadAfterClose.java41 in = zf.getInputStream(zent);
/openjdk7/jdk/src/share/classes/java/lang/
H A DProcess.java51 * {@link #getInputStream()}, and
120 abstract public InputStream getInputStream(); method in class:Process
/openjdk7/jdk/test/java/util/jar/JarFile/
H A DMevNPE.java35 try (InputStream s1 = jf.getInputStream(
39 try (InputStream s2 = jf.getInputStream(
H A DJarNoManifest.java39 InputStream in = jar.getInputStream(entry);
H A DVerifySignedJar.java49 jf.getInputStream((ZipEntry) e.nextElement());
62 try { Unreached (jf.getInputStream(null)); }
H A DSignedJarFileGetInputStream.java26 * @summary JarFile.getInputStream should not throw when jar file is signed
42 InputStream is = jar.getInputStream(new ZipEntry(entry.getName()));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DDataHandlerDataSource.java51 public InputStream getInputStream() throws IOException { method in class:DataHandlerDataSource
52 return dataHandler.getInputStream();
H A DDataSourceStreamingDataHandler.java45 return getInputStream();
49 InputStream in = getInputStream();
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DFeelingLucky.java39 final InputStream is = minedProcess.getInputStream();
72 if (p.getInputStream().read() != -1) {
/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DApplicationException.java58 public InputStream getInputStream() { method in class:ApplicationException
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DDataSource.java53 public InputStream getInputStream() throws IOException; method in interface:DataSource
/openjdk7/jdk/test/java/lang/Runtime/exec/
H A DSpace.java36 new InputStreamReader(p.getInputStream()));
H A DStreamsSurviveDestroy.java106 Copier cp1 = new Copier("out", p.getInputStream(), System.err,
126 Copier cp1 = new Copier("out", p.getInputStream(), System.err,
133 p.getInputStream().close();
147 Copier cp1 = new Copier("out", p.getInputStream(), System.err,
156 p.getInputStream().close();
169 Copier cp1 = new Copier("out", p.getInputStream(), System.err,
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DConnection.java33 public InputStream getInputStream() throws IOException; method in interface:Connection
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/
H A DFastInfosetSource.java74 ((SAXDocumentParser) reader).setInputStream(getInputStream());
78 public InputStream getInputStream() { method in class:FastInfosetSource
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DRetryUponTimeout.java41 InputStream is = socket.getInputStream ();
68 uc.getInputStream();
/openjdk7/jdk/test/sun/net/www/http/HttpClient/
H A DCookieHttpClientTest.java56 readOneRequest(s.getInputStream());
59 readOneRequest(s.getInputStream());
94 InputStream in = url.openConnection().getInputStream();
101 in = url.openConnection().getInputStream();
/openjdk7/jdk/test/sun/net/www/protocol/file/
H A DFileURLTest.java27 * @summary url: file:///D|/Projects/tmp/test.html: urlConnection.getInputStream() broken.
43 InputStream in = urlConnection.getInputStream();
/openjdk7/jdk/test/sun/net/www/protocol/jar/
H A DB5105410.java32 InputStream is = urlc.getInputStream();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DDataSourceSource.java99 r = new InputStreamReader(source.getInputStream(),charset);
108 public InputStream getInputStream() { method in class:DataSourceSource
112 is = source.getInputStream();
/openjdk7/jdk/test/java/net/URLConnection/
H A DRedirect307Test.java82 readOneRequest(s.getInputStream());
90 readOneRequest(s.getInputStream());
115 try (InputStream in = conURL.getInputStream()) {

Completed in 105 milliseconds

1234567891011>>