/libcore/luni/src/main/java/java/io/ |
D | ObjectInput.java | 55 public int read() throws IOException; in read() method 68 public int read(byte[] buffer) throws IOException; in read() method 87 public int read(byte[] buffer, int offset, int count) throws IOException; in read() method
|
D | InputStream.java | 157 public abstract int read() throws IOException; in read() method in InputStream 162 public int read(byte[] buffer) throws IOException { in read() method in InputStream 186 public int read(byte[] buffer, int offset, int length) throws IOException { in read() method in InputStream
|
D | Reader.java | 122 public int read() throws IOException { in read() method in Reader 144 public int read(char[] buf) throws IOException { in read() method in Reader 166 public abstract int read(char[] buf, int offset, int count) throws IOException; in read() method in Reader
|
D | StringBufferInputStream.java | 77 public synchronized int read() { in read() method in StringBufferInputStream 102 public synchronized int read(byte[] buffer, int offset, int length) { in read() method in StringBufferInputStream
|
D | StringReader.java | 123 public int read() throws IOException { in read() method in StringReader 155 public int read(char[] buf, int offset, int len) throws IOException { in read() method in StringReader 167 int read = end - pos; in read() local
|
D | BufferedInputStream.java | 217 public synchronized int read() throws IOException { in read() method in BufferedInputStream 266 public synchronized int read(byte[] buffer, int offset, int byteCount) throws IOException { in read() method in BufferedInputStream 298 int read; in read() local 387 long read = count - pos; in skip() local
|
D | LineNumberReader.java | 115 public int read() throws IOException { in read() method in LineNumberReader 157 public int read(char[] buffer, int offset, int count) throws IOException { in read() method in LineNumberReader 159 int read = super.read(buffer, offset, count); in read() local
|
D | FilterInputStream.java | 113 public int read() throws IOException { in read() method in FilterInputStream 137 public int read(byte[] buffer, int offset, int count) throws IOException { in read() method in FilterInputStream
|
D | FilterReader.java | 112 public int read() throws IOException { in read() method in FilterReader 137 public int read(char[] buffer, int offset, int count) throws IOException { in read() method in FilterReader
|
D | SequenceInputStream.java | 137 public int read() throws IOException { in read() method in SequenceInputStream 184 public int read(byte[] buffer, int offset, int count) throws IOException { in read() method in SequenceInputStream
|
/libcore/luni/src/main/java/java/nio/channels/ |
D | ScatteringByteChannel.java | 52 public long read(ByteBuffer[] buffers) throws IOException; in read() method 88 public long read(ByteBuffer[] buffers, int offset, int length) in read() method
|
D | SocketChannel.java | 256 public abstract int read(ByteBuffer target) throws IOException; in read() method in SocketChannel 293 public abstract long read(ByteBuffer[] targets, int offset, int length) throws IOException; in read() method in SocketChannel 324 public synchronized final long read(ByteBuffer[] targets) throws IOException { in read() method in SocketChannel
|
D | DatagramChannel.java | 247 public abstract int read(ByteBuffer target) throws IOException; in read() method in DatagramChannel 287 public abstract long read(ByteBuffer[] targets, int offset, int length) in read() method in DatagramChannel 319 public synchronized final long read(ByteBuffer[] targets) in read() method in DatagramChannel
|
D | ReadableByteChannel.java | 65 public int read(ByteBuffer buffer) throws IOException; in read() method
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
D | SSLInputStream.java | 46 public abstract int read() throws IOException; in read() method in SSLInputStream 92 public byte[] read(int length) throws IOException { in read() method in SSLInputStream 101 public int read(byte[] b, int off, int len) throws IOException { in read() method in SSLInputStream
|
/libcore/support/src/test/java/tests/support/ |
D | Support_StringReader.java | 118 public int read() throws IOException { in read() method in Support_StringReader 148 public int read(char buf[], int offset, int count) throws IOException { in read() method in Support_StringReader 160 int read = end - pos; in read() local
|
D | ThrowingReader.java | 38 @Override public int read() throws IOException { in read() method in ThrowingReader 45 @Override public int read(char[] buf, int offset, int count) in read() method in ThrowingReader
|
/libcore/luni/src/main/java/libcore/net/http/ |
D | UnknownLengthHttpInputStream.java | 35 @Override public int read(byte[] buffer, int offset, int count) throws IOException { in read() method in UnknownLengthHttpInputStream 41 int read = in.read(buffer, offset, count); in read() local
|
D | FixedLengthInputStream.java | 39 @Override public int read(byte[] buffer, int offset, int count) throws IOException { in read() method in FixedLengthInputStream 45 int read = in.read(buffer, offset, Math.min(count, bytesRemaining)); in read() local
|
D | ChunkedInputStream.java | 39 @Override public int read(byte[] buffer, int offset, int count) throws IOException { in read() method in ChunkedInputStream 52 int read = in.read(buffer, offset, Math.min(count, bytesRemainingInChunk)); in read() local
|
/libcore/luni/src/main/java/java/util/zip/ |
D | CheckedInputStream.java | 62 public int read() throws IOException { in read() method in CheckedInputStream 88 public int read(byte[] buf, int off, int nbytes) throws IOException { in read() method in CheckedInputStream
|
/libcore/luni/src/main/java/java/sql/ |
D | DataTruncation.java | 36 private boolean read = false; field in DataTruncation 70 public DataTruncation(int index, boolean parameter, boolean read, in DataTruncation() 103 public DataTruncation(int index, boolean parameter, boolean read, in DataTruncation()
|
/libcore/luni/src/main/java/java/lang/ |
D | Readable.java | 39 int read(CharBuffer cb) throws IOException; in read() method
|
/libcore/luni/src/main/java/libcore/net/url/ |
D | FtpURLInputStream.java | 41 public int read() throws IOException { in read() method in FtpURLInputStream 46 public int read(byte[] buf, int off, int nbytes) throws IOException { in read() method in FtpURLInputStream
|
/libcore/luni/src/main/java/java/security/ |
D | DigestInputStream.java | 85 public int read() throws IOException { in read() method in DigestInputStream 118 public int read(byte[] b, int off, int len) throws IOException { in read() method in DigestInputStream
|