Searched defs:getInputStream (Results 1 - 23 of 23) 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/libcore/net/url/
H A DFileURLConnection.java179 public InputStream getInputStream() throws IOException { method in class:FileURLConnection
H A DJarURLConnectionImpl.java142 final InputStream is = jarFileURL.openConnection().getInputStream();
215 public InputStream getInputStream() throws IOException { method in class:JarURLConnectionImpl
227 .getInputStream(jarEntry), jarFile);
H A DFtpURLConnection.java223 ctrlInput = controlSocket.getInputStream();
253 new BufferedInputStream(dataSocket.getInputStream()), controlSocket);
298 public InputStream getInputStream() throws IOException { method in class:FtpURLConnection
332 * @see #getInputStream()
/libcore/luni/src/test/java/tests/api/java/lang/
H A DProcessTest.java29 * java.lang.Process#getInputStream()
50 InputStream is = proc.getInputStream();
89 InputStream is = proc.getInputStream();
192 public InputStream getInputStream() { method in class:ProcessTest.ProcessClass
/libcore/luni/src/main/java/java/net/
H A DSocketImpl.java167 protected abstract InputStream getInputStream() throws IOException; method in class:SocketImpl
H A DPlainSocketImpl.java215 @Override protected synchronized InputStream getInputStream() throws IOException { method in class:PlainSocketImpl
443 int count = getInputStream().read(reply.getBytes(), bytesRead,
H A DSocket.java338 public InputStream getInputStream() throws IOException { method in class:Socket
343 return impl.getInputStream();
H A DURLConnection.java38 * InputStream in = new BufferedInputStream(urlConnection.getInputStream());
195 contentType = guessContentTypeFromStream(getInputStream());
229 contentType = guessContentTypeFromStream(getInputStream());
588 public InputStream getInputStream() throws IOException { method in class:URLConnection
1018 return u.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.java206 InputStream is = client.getInputStream();
596 InputStream theInput = theSocket.getInputStream();
631 InputStream theInput = theSocket.getInputStream();
1053 InputStream theInput = theSocket.getInputStream();
1055 InputStream theInput2 = servSock.getInputStream();
1333 InputStream theInput = theSocket.getInputStream();
1335 InputStream theInput2 = servSock.getInputStream();
1407 InputStream theInput = theSocket.getInputStream();
1437 InputStream theInput = theSocket.getInputStream();
1714 InputStream theInput = theSocket.getInputStream();
2225 protected InputStream getInputStream() throws IOException { method in class:OldSocketTest.MockSocketImpl
[all...]
/libcore/luni/src/main/java/java/util/jar/
H A DJarFile.java290 InputStream is = super.getInputStream(manifestEntry);
293 is = super.getInputStream(manifestEntry);
342 InputStream is = super.getInputStream(entry);
369 public InputStream getInputStream(ZipEntry ze) throws IOException { method in class:JarFile
388 InputStream in = super.getInputStream(ze);
/libcore/luni/src/main/java/java/util/zip/
H A DZipFile.java246 public InputStream getInputStream(ZipEntry entry) throws IOException { method in class:ZipFile
372 * among all streams returned by getInputStream(), so we have to synchronize
447 // explicitly checks that the InputStream returned from ZipFile.getInputStream
/libcore/luni/src/main/java/libcore/net/http/
H A DHttpConnection.java156 public InputStream getInputStream() throws IOException { method in class:HttpConnection
159 sslInputStream = sslSocket.getInputStream();
171 ? socket.getInputStream()
172 : new BufferedInputStream(socket.getInputStream(), bufferSize);
H A DHttpURLConnectionImpl.java172 @Override public final InputStream getInputStream() throws IOException { method in class:HttpURLConnectionImpl
H A DHttpsURLConnectionImpl.java270 public InputStream getInputStream() throws IOException { method in class:HttpsURLConnectionImpl
271 return delegate.getInputStream();
/libcore/luni/src/main/java/java/nio/
H A DSocketChannelImpl.java564 public InputStream getInputStream() throws IOException { method in class:SocketChannelImpl.SocketAdapter
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DSSLSocketImpl.java195 input = super.getInputStream();
491 * @see javax.net.ssl.SSLSocket#getInputStream()
495 public InputStream getInputStream() throws IOException { method in class:SSLSocketImpl
H A DOpenSSLSocketImpl.java603 @Override public InputStream getInputStream() throws IOException { method in class:OpenSSLSocketImpl
/libcore/luni/src/main/java/libcore/io/
H A DDiskLruCache.java644 public InputStream getInputStream(int index) { method in class:DiskLruCache.Snapshot
652 return inputStreamToString(getInputStream(index));

Completed in 823 milliseconds