Searched defs:getInputStream (Results 1 - 20 of 20) sorted by relevance

/libcore/luni/src/main/java/java/lang/
H A DProcess.java30 * #getInputStream()} and {@link #getErrorStream()} respectively. If these
50 * InputStream in = process.getInputStream();
93 public abstract InputStream getInputStream(); method in class:Process
H A DProcessManager.java285 public InputStream getInputStream() { method in class:ProcessManager.ProcessImpl
/libcore/luni/src/main/java/javax/xml/transform/stream/
H A DStreamSource.java163 public InputStream getInputStream() { method in class:StreamSource
/libcore/luni/src/main/java/java/util/jar/
H A DStrictJarFile.java148 public InputStream getInputStream(ZipEntry ze) { method in class:StrictJarFile
229 metaEntries.put(entry.getName(), Streams.readFully(getInputStream(entry)));
H A DJarFile.java338 zipFile.getInputStream(entry)));
350 InputStream is = zipFile.getInputStream(entry);
374 public InputStream getInputStream(ZipEntry ze) throws IOException { method in class:JarFile
390 InputStream in = super.getInputStream(ze);
/libcore/luni/src/main/java/libcore/net/url/
H A DFileURLConnection.java306 public InputStream getInputStream() throws IOException { method in class:FileURLConnection
H A DJarURLConnectionImpl.java138 final InputStream is = jarFileURL.openConnection().getInputStream();
211 public InputStream getInputStream() throws IOException { method in class:JarURLConnectionImpl
223 .getInputStream(jarEntry), jarFile);
H A DFtpURLConnection.java230 ctrlInput = controlSocket.getInputStream();
260 new BufferedInputStream(dataSocket.getInputStream()), controlSocket);
305 public InputStream getInputStream() throws IOException { method in class:FtpURLConnection
339 * @see #getInputStream()
/libcore/luni/src/test/java/libcore/java/net/
H A DOldSocketImplFactoryTest.java153 protected InputStream getInputStream() throws IOException { method in class:OldSocketImplFactoryTest.MockSocketImpl
H A DOldServerSocketTest.java361 protected InputStream getInputStream() throws IOException { method in class:OldServerSocketTest.MockSocketImpl
H A DOldSocketTest.java207 InputStream is = client.getInputStream();
597 InputStream theInput = theSocket.getInputStream();
632 InputStream theInput = theSocket.getInputStream();
1044 InputStream theInput = theSocket.getInputStream();
1046 InputStream theInput2 = servSock.getInputStream();
1336 InputStream theInput = theSocket.getInputStream();
1338 InputStream theInput2 = servSock.getInputStream();
1410 InputStream theInput = theSocket.getInputStream();
1440 InputStream theInput = theSocket.getInputStream();
1717 InputStream theInput = theSocket.getInputStream();
2228 protected InputStream getInputStream() throws IOException { method in class:OldSocketTest.MockSocketImpl
[all...]
H A DURLConnectionTest.java301 assertEquals("ABC", readAscii(connection1.getInputStream(), Integer.MAX_VALUE));
304 assertEquals("DEF", readAscii(connection2.getInputStream(), Integer.MAX_VALUE));
426 conn.getInputStream();
486 readAscii(connection.getInputStream(), Integer.MAX_VALUE);
508 connection.getInputStream();
917 InputStream in = connection.getInputStream();
997 InputStream in = server.getUrl("/").openConnection().getInputStream();
1043 readAscii(connection.getInputStream(), Integer.MAX_VALUE);
1059 readAscii(connection.getInputStream(), Integer.MAX_VALUE);
1077 assertEquals("ABCABCABC", readAscii(connection.getInputStream(), Intege
2901 @Override public InputStream getInputStream() throws IOException { method in class:URLConnectionTest.DelegatingSSLSocket
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DSocketImplTest.java108 protected InputStream getInputStream() throws IOException { method in class:SocketImplTest.MockSocketImpl
H A DServerSocketTest.java906 protected InputStream getInputStream() throws IOException { method in class:ServerSocketTest.MockSocketImpl
/libcore/luni/src/main/java/java/net/
H A DSocketImpl.java167 protected abstract InputStream getInputStream() throws IOException; method in class:SocketImpl
H A DPlainSocketImpl.java212 @Override protected synchronized InputStream getInputStream() throws IOException { method in class:PlainSocketImpl
436 int count = getInputStream().read(reply.getBytes(), bytesRead,
H A DSocket.java360 public InputStream getInputStream() throws IOException { method in class:Socket
365 return impl.getInputStream();
H A DURLConnection.java38 * InputStream in = new BufferedInputStream(urlConnection.getInputStream());
195 contentType = guessContentTypeFromStream(getInputStream());
229 contentType = guessContentTypeFromStream(getInputStream());
587 public InputStream getInputStream() throws IOException { method in class:URLConnection
1017 return u.getInputStream();
/libcore/luni/src/main/java/java/util/zip/
H A DZipFile.java298 public InputStream getInputStream(ZipEntry entry) throws IOException { method in class:ZipFile
440 // or from getInputStream.
503 * among all streams returned by getInputStream(), so we have to synchronize
604 // explicitly checks that the InputStream returned from ZipFile.getInputStream
/libcore/luni/src/main/java/java/nio/
H A DSocketChannelImpl.java570 public InputStream getInputStream() throws IOException { method in class:SocketChannelImpl.SocketAdapter
571 return new BlockingCheckInputStream(super.getInputStream(), channel);

Completed in 5754 milliseconds