/libcore/ojluni/src/main/java/java/io/ |
D | ObjectInput.java | 60 public int read() throws IOException; in read() method 70 public int read(byte b[]) throws IOException; in read() method 82 public int read(byte b[], int off, int len) throws IOException; in read() method
|
D | FilterInputStream.java | 82 public int read() throws IOException { in read() method in FilterInputStream 106 public int read(byte b[]) throws IOException { in read() method in FilterInputStream 132 public int read(byte b[], int off, int len) throws IOException { in read() method in FilterInputStream
|
D | Reader.java | 97 public int read(java.nio.CharBuffer target) throws IOException { in read() method in Reader 119 public int read() throws IOException { in read() method in Reader 139 public int read(char cbuf[]) throws IOException { in read() method in Reader 157 abstract public int read(char cbuf[], int off, int len) throws IOException; in read() method in Reader
|
D | InputStream.java | 65 public abstract int read() throws IOException; in read() method in InputStream 100 public int read(byte b[]) throws IOException { in read() method in InputStream 161 public int read(byte b[], int off, int len) throws IOException { in read() method in InputStream
|
D | StringBufferInputStream.java | 91 public synchronized int read() { in read() method in StringBufferInputStream 111 public synchronized int read(byte b[], int off, int len) { in read() method in StringBufferInputStream
|
D | FilterReader.java | 64 public int read() throws IOException { in read() method in FilterReader 73 public int read(char cbuf[], int off, int len) throws IOException { in read() method in FilterReader
|
D | SequenceInputStream.java | 162 public int read() throws IOException { in read() method in SequenceInputStream 197 public int read(byte b[], int off, int len) throws IOException { in read() method in SequenceInputStream
|
D | ByteArrayInputStream.java | 143 public synchronized int read() { in read() method in ByteArrayInputStream 176 public synchronized int read(byte b[], int off, int len) { in read() method in ByteArrayInputStream
|
D | InputStreamReader.java | 167 public int read() throws IOException { in read() method in InputStreamReader 183 public int read(char cbuf[], int offset, int length) throws IOException { in read() method in InputStreamReader
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | ChannelInputStream.java | 54 public static int read(ReadableByteChannel ch, ByteBuffer bb) in read() method in ChannelInputStream 86 public synchronized int read() throws IOException { in read() method in ChannelInputStream 95 public synchronized int read(byte[] bs, int off, int len) in read() method in ChannelInputStream 114 protected int read(ByteBuffer bb) in read() method in ChannelInputStream
|
/libcore/ojluni/src/main/java/sun/net/www/http/ |
D | HttpCaptureInputStream.java | 44 public int read() throws IOException { in read() method in HttpCaptureInputStream 60 public int read(byte[] b) throws IOException { in read() method in HttpCaptureInputStream 69 public int read(byte[] b, int off, int len) throws IOException { in read() method in HttpCaptureInputStream
|
/libcore/ojluni/src/main/java/java/nio/channels/ |
D | ScatteringByteChannel.java | 123 public long read(ByteBuffer[] dsts, int offset, int length) in read() method 160 public long read(ByteBuffer[] dsts) throws IOException; in read() method
|
D | SocketChannel.java | 458 public abstract int read(ByteBuffer dst) throws IOException; in read() method in SocketChannel 464 public abstract long read(ByteBuffer[] dsts, int offset, int length) in read() method in SocketChannel 471 public final long read(ByteBuffer[] dsts) throws IOException { in read() method in SocketChannel
|
D | DatagramChannel.java | 479 public abstract int read(ByteBuffer dst) throws IOException; in read() method in DatagramChannel 494 public abstract long read(ByteBuffer[] dsts, int offset, int length) in read() method in DatagramChannel 510 public final long read(ByteBuffer[] dsts) throws IOException { in read() method in DatagramChannel
|
/libcore/ojluni/src/main/java/sun/net/ |
D | TelnetInputStream.java | 90 public int read() throws IOException { in read() method in TelnetInputStream 128 public int read(byte bytes[]) throws IOException { in read() method in TelnetInputStream 136 public int read(byte bytes[], int off, int length) throws IOException { in read() method in TelnetInputStream
|
/libcore/ojluni/src/main/java/sun/security/ssl/ |
D | ByteBufferInputStream.java | 53 public int read() throws IOException { in read() method in ByteBufferInputStream 70 public int read(byte b[]) throws IOException { in read() method in ByteBufferInputStream 84 public int read(byte b[], int off, int len) throws IOException { in read() method in ByteBufferInputStream
|
D | AppInputStream.java | 68 public synchronized int read() throws IOException { in read() method in AppInputStream 82 public synchronized int read(byte b[], int off, int len) in read() method in AppInputStream
|
/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/ojluni/src/main/java/java/sql/ |
D | DataTruncation.java | 61 boolean read, int dataSize, in DataTruncation() 94 boolean read, int dataSize, in DataTruncation() 171 private boolean read; field in DataTruncation
|
/libcore/ojluni/src/main/java/java/net/ |
D | SocketInputStream.java | 105 public int read(byte b[]) throws IOException { in read() method in SocketInputStream 119 public int read(byte b[], int off, int length) throws IOException { in read() method in SocketInputStream 123 int read(byte b[], int off, int length, int timeout) throws IOException { in read() method in SocketInputStream 201 public int read() throws IOException { in read() method in SocketInputStream
|
/libcore/ojluni/src/main/java/javax/crypto/ |
D | CipherInputStream.java | 173 public int read() throws IOException { in read() method in CipherInputStream 199 public int read(byte b[]) throws IOException { in read() method in CipherInputStream 220 public int read(byte b[], int off, int len) throws IOException { in read() method in CipherInputStream
|
/libcore/ojluni/src/main/java/java/util/zip/ |
D | CheckedInputStream.java | 58 public int read() throws IOException { in read() method in CheckedInputStream 81 public int read(byte[] buf, int off, int len) throws IOException { in read() method in CheckedInputStream
|
/libcore/ojluni/src/main/java/java/security/ |
D | DigestInputStream.java | 123 public int read() throws IOException { in read() method in DigestInputStream 160 public int read(byte[] b, int off, int len) throws IOException { in read() method in DigestInputStream
|
/libcore/ojluni/src/main/java/java/lang/ |
D | Readable.java | 53 public int read(java.nio.CharBuffer cb) throws IOException; in read() method
|