Home | History | Annotate | Download | only in ch

Lines Matching refs:read

50     // the read) we never do that, though.
52 // read(ReadableByteChannel,ByteBuffer, boolean block)
53 public static int read(ReadableByteChannel ch, ByteBuffer bb)
65 int n = ch.read(bb);
72 return ch.read(bb);
85 public synchronized int read() throws IOException {
88 int n = this.read(b1);
94 public synchronized int read(byte[] bs, int off, int len)
110 return read(bb);
113 protected int read(ByteBuffer bb)
116 return ChannelInputStream.read(ch, bb);