/libcore/luni/src/main/java/java/io/ |
D | ObjectInput.java | 55 public int read() throws IOException; in read() method 65 public int read(byte[] buffer) throws IOException; in read() method 76 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException; in read() method
|
D | InputStream.java | 156 public abstract int read() throws IOException; in read() method in InputStream 161 public int read(byte[] buffer) throws IOException { in read() method in InputStream 176 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read() method in InputStream
|
D | Reader.java | 122 public int read() throws IOException { in read() method in Reader 140 public int read(char[] buffer) throws IOException { in read() method in Reader 153 public abstract int read(char[] buffer, int offset, int count) throws IOException; in read() method in Reader
|
D | StringBufferInputStream.java | 77 public synchronized int read() { in read() method in StringBufferInputStream 81 @Override public synchronized int read(byte[] buffer, int byteOffset, int byteCount) { in read() method in StringBufferInputStream
|
D | StringReader.java | 123 public int read() throws IOException { in read() method in StringReader 145 public int read(char[] buffer, int offset, int count) throws IOException { in read() method in StringReader 157 int read = end - pos; in read() local
|
D | BufferedInputStream.java | 224 public synchronized int read() throws IOException { in read() method in BufferedInputStream 252 …@Override public synchronized int read(byte[] buffer, int byteOffset, int byteCount) throws IOExce… in read() method in BufferedInputStream 284 int read; in read() local 373 long read = count - pos; in skip() local
|
D | LineNumberReader.java | 115 public int read() throws IOException { in read() method in LineNumberReader 148 public int read(char[] buffer, int offset, int count) throws IOException { in read() method in LineNumberReader 150 int read = super.read(buffer, offset, count); in read() local
|
D | FilterReader.java | 112 public int read() throws IOException { in read() method in FilterReader 128 public int read(char[] buffer, int offset, int count) throws IOException { in read() method in FilterReader
|
D | FilterInputStream.java | 113 public int read() throws IOException { in read() method in FilterInputStream 117 @Override public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read() method in FilterInputStream
|
D | SequenceInputStream.java | 137 public int read() throws IOException { in read() method in SequenceInputStream 173 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read() method in SequenceInputStream
|
D | ByteArrayInputStream.java | 140 public synchronized int read() { in read() method in ByteArrayInputStream 144 @Override public synchronized int read(byte[] buffer, int byteOffset, int byteCount) { in read() method in ByteArrayInputStream
|
D | FileInputStream.java | 172 @Override public int read() throws IOException { in read() method in FileInputStream 176 @Override public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read() method in FileInputStream
|
/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 | 264 public abstract int read(ByteBuffer target) throws IOException; in read() method in SocketChannel 301 public abstract long read(ByteBuffer[] targets, int offset, int length) throws IOException; in read() method in SocketChannel 332 public synchronized final long read(ByteBuffer[] targets) throws IOException { in read() method in SocketChannel
|
D | DatagramChannel.java | 250 public abstract int read(ByteBuffer target) throws IOException; in read() method in DatagramChannel 290 public abstract long read(ByteBuffer[] targets, int offset, int length) in read() method in DatagramChannel 322 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
|
D | FileChannel.java | 343 public abstract int read(ByteBuffer buffer) throws IOException; in read() method in FileChannel 380 public abstract int read(ByteBuffer buffer, long position) in read() method in FileChannel 414 public final long read(ByteBuffer[] buffers) throws IOException { in read() method in FileChannel 453 public abstract long read(ByteBuffer[] buffers, int start, int number) in read() method in FileChannel
|
/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/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/util/zip/ |
D | CheckedInputStream.java | 62 public int read() throws IOException { in read() method in CheckedInputStream 81 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read() method in CheckedInputStream
|
/libcore/luni/src/main/java/java/security/ |
D | DigestInputStream.java | 85 public int read() throws IOException { in read() method in DigestInputStream 112 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { in read() method in DigestInputStream
|
/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/lang/ |
D | Readable.java | 39 int read(CharBuffer cb) throws IOException; in read() method
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | OldAndroidPushbackReaderTest.java | 58 public static String read(Reader a) throws IOException { in read() method in OldAndroidPushbackReaderTest 69 public static String read(Reader a, int x) throws IOException { in read() method in OldAndroidPushbackReaderTest
|