Home
last modified time | relevance | path

Searched defs:read (Results 1 – 25 of 137) 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
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
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
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
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
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
DSequenceInputStream.java162 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
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/ojluni/src/main/java/sun/nio/ch/
DChannelInputStream.java54 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/
DHttpCaptureInputStream.java44 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/
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
DSocketChannel.java458 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
DDatagramChannel.java479 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/
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/sun/security/ssl/
DByteBufferInputStream.java53 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
DAppInputStream.java68 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/
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.java105 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/
DCipherInputStream.java173 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/
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/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
/libcore/ojluni/src/main/java/java/lang/
DReadable.java53 public int read(java.nio.CharBuffer cb) throws IOException; in read() method

123456