Home
last modified time | relevance | path

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

123456

/libcore/ojluni/src/main/java/java/io/
DObjectInput.java60 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
DReader.java97 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
DFilterInputStream.java82 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
DInputStream.java65 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
DFilterReader.java64 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
DStringBufferInputStream.java91 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
DSequenceInputStream.java162 public int read() throws IOException { in read() method in SequenceInputStream
196 public int read(byte b[], int off, int len) throws IOException { in read() method in SequenceInputStream
DFileInputStream.java258 public int read() throws IOException { in read() method in FileInputStream
290 public int read(byte b[]) throws IOException { in read() method in FileInputStream
313 public int read(byte b[], int off, int len) throws IOException { in read() method in FileInputStream
DByteArrayInputStream.java143 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
DInputStreamReader.java167 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/luni/src/test/java/libcore/java/net/
DAuditInputStream.java38 public int read() throws IOException { in read() method in AuditInputStream
45 public int read(byte[] b) throws IOException { in read() method in AuditInputStream
54 public int read(byte[] b, int off, int len) throws IOException { in read() method in AuditInputStream
/libcore/ojluni/src/main/java/sun/nio/ch/
DChannelInputStream.java48 public static int read(ReadableByteChannel ch, ByteBuffer bb, in read() method in ChannelInputStream
79 public synchronized int read() throws IOException { in read() method in ChannelInputStream
88 public synchronized int read(byte[] bs, int off, int len) in read() method in ChannelInputStream
107 protected int read(ByteBuffer bb) in read() method in ChannelInputStream
/libcore/ojluni/src/main/java/sun/net/
DTelnetInputStream.java90 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/java/nio/channels/
DScatteringByteChannel.java123 public long read(ByteBuffer[] dsts, int offset, int length) in read() method
160 public long read(ByteBuffer[] dsts) throws IOException; in read() method
DAsynchronousByteChannel.java108 <A> void read(ByteBuffer dst, in read() method
136 Future<Integer> read(ByteBuffer dst); in read() method
DDatagramChannel.java482 public abstract int read(ByteBuffer dst) throws IOException; in read() method in DatagramChannel
497 public abstract long read(ByteBuffer[] dsts, int offset, int length) in read() method in DatagramChannel
513 public final long read(ByteBuffer[] dsts) throws IOException { in read() method in DatagramChannel
DSocketChannel.java467 public abstract int read(ByteBuffer dst) throws IOException; in read() method in SocketChannel
473 public abstract long read(ByteBuffer[] dsts, int offset, int length) in read() method in SocketChannel
480 public final long read(ByteBuffer[] dsts) throws IOException { in read() method in SocketChannel
/libcore/ojluni/annotations/mmodule/java/io/
DFileInputStream.annotated.java45 public int read() throws java.io.IOException { throw new RuntimeException("Stub!"); } in read() method in FileInputStream
47 public int read(byte[] b) throws java.io.IOException { throw new RuntimeException("Stub!"); } in read() method in FileInputStream
49 public int read(byte[] b, int off, int len) throws java.io.IOException { throw new RuntimeException… in read() method in FileInputStream
/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/ojluni/src/main/java/java/sql/
DDataTruncation.java61 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/
DSocketInputStream.java129 public int read(byte b[]) throws IOException { in read() method in SocketInputStream
143 public int read(byte b[], int off, int length) throws IOException { in read() method in SocketInputStream
147 int read(byte b[], int off, int length, int timeout) throws IOException { in read() method in SocketInputStream
224 public int read() throws IOException { in read() method in SocketInputStream
/libcore/ojluni/src/main/java/java/util/zip/
DCheckedInputStream.java58 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/javax/crypto/
DCipherInputStream.java198 public int read() throws IOException { in read() method in CipherInputStream
224 public int read(byte b[]) throws IOException { in read() method in CipherInputStream
245 public int read(byte b[], int off, int len) throws IOException { in read() method in CipherInputStream
/libcore/ojluni/src/main/java/java/security/
DDigestInputStream.java123 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

123456