HomeSort by relevance Sort by last modified time
    Searched defs:SocketInputStream (Results 1 - 3 of 3) sorted by null

  /libcore/ojluni/src/main/java/java/net/
SocketInputStream.java 40 * SocketInputStream. Note that this class should <b>NOT</b> be
46 class SocketInputStream extends FileInputStream
54 * Creates a new SocketInputStream. Can only be called
59 SocketInputStream(AbstractPlainSocketImpl impl) throws IOException {
69 * The <code>getChannel</code> method of <code>SocketInputStream</code>
  /frameworks/base/core/java/android/net/
LocalSocketImpl.java 38 private SocketInputStream fis;
58 class SocketInputStream extends InputStream {
357 fis = new SocketInputStream();
  /libcore/ojluni/src/main/java/sun/nio/ch/
SocketAdaptor.java 206 private class SocketInputStream
209 private SocketInputStream() {
263 private InputStream socketInputStream = null;
272 if (socketInputStream == null) {
274 socketInputStream = AccessController.doPrivileged(
277 return new SocketInputStream();
284 return socketInputStream;

Completed in 217 milliseconds