HomeSort by relevance Sort by last modified time
    Searched refs:SocketInputStream (Results 1 - 9 of 9) 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>
AbstractPlainSocketImpl.java 57 private SocketInputStream socketInputStream = null;
402 if (socketInputStream == null) {
403 socketInputStream = new SocketInputStream(this);
405 return socketInputStream;
408 void setInputStream(SocketInputStream in) {
409 socketInputStream = in;
516 if (socketInputStream != null) {
517 socketInputStream.setEOF(true)
    [all...]
SocksSocketImpl.java 124 count = ((SocketInputStream)in).read(data, received, len - received, remainingMillis(deadlineMillis));
    [all...]
  /libcore/ojluni/src/main/native/
openjdksub.mk 54 SocketInputStream.c \
SocketInputStream.c 43 * SocketInputStream
157 NATIVE_METHOD(SocketInputStream, socketRead0, "(Ljava/io/FileDescriptor;[BIII)I"),
161 jniRegisterNativeMethods(env, "java/net/SocketInputStream", gMethods, NELEM(gMethods));
  /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;
  /frameworks/base/
compiled-classes-phone     [all...]
  /libcore/
openjdk_java_files.mk 291 ojluni/src/main/java/java/net/SocketInputStream.java \
    [all...]

Completed in 696 milliseconds