Home
last modified time | relevance | path

Searched defs:read (Results 1 – 25 of 108) sorted by relevance

12345

/libcore/luni/src/main/java/java/io/
DObjectInput.java55 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
DInputStream.java156 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
DReader.java122 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
DStringBufferInputStream.java77 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
DStringReader.java123 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
DBufferedInputStream.java224 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
DLineNumberReader.java115 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
DFilterReader.java112 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
DFilterInputStream.java113 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
DSequenceInputStream.java137 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
DByteArrayInputStream.java140 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
DFileInputStream.java172 @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/
DScatteringByteChannel.java52 public long read(ByteBuffer[] buffers) throws IOException; in read() method
88 public long read(ByteBuffer[] buffers, int offset, int length) in read() method
DSocketChannel.java264 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
DDatagramChannel.java250 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
DReadableByteChannel.java65 public int read(ByteBuffer buffer) throws IOException; in read() method
DFileChannel.java343 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/
DSupport_StringReader.java118 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
DThrowingReader.java38 @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/
DDataTruncation.java36 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/
DCheckedInputStream.java62 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/
DDigestInputStream.java85 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/
DFtpURLInputStream.java41 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/
DReadable.java39 int read(CharBuffer cb) throws IOException; in read() method
/libcore/luni/src/test/java/libcore/java/io/
DOldAndroidPushbackReaderTest.java58 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

12345