Home
last modified time | relevance | path

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

1234

/libcore/luni/src/main/java/java/io/
DObjectInput.java55 public int read() throws IOException; in read() method
68 public int read(byte[] buffer) throws IOException; in read() method
87 public int read(byte[] buffer, int offset, int count) throws IOException; in read() method
DInputStream.java157 public abstract int read() throws IOException; in read() method in InputStream
162 public int read(byte[] buffer) throws IOException { in read() method in InputStream
186 public int read(byte[] buffer, int offset, int length) throws IOException { in read() method in InputStream
DReader.java122 public int read() throws IOException { in read() method in Reader
144 public int read(char[] buf) throws IOException { in read() method in Reader
166 public abstract int read(char[] buf, int offset, int count) throws IOException; in read() method in Reader
DStringBufferInputStream.java77 public synchronized int read() { in read() method in StringBufferInputStream
102 public synchronized int read(byte[] buffer, int offset, int length) { in read() method in StringBufferInputStream
DStringReader.java123 public int read() throws IOException { in read() method in StringReader
155 public int read(char[] buf, int offset, int len) throws IOException { in read() method in StringReader
167 int read = end - pos; in read() local
DBufferedInputStream.java217 public synchronized int read() throws IOException { in read() method in BufferedInputStream
266 public synchronized int read(byte[] buffer, int offset, int byteCount) throws IOException { in read() method in BufferedInputStream
298 int read; in read() local
387 long read = count - pos; in skip() local
DLineNumberReader.java115 public int read() throws IOException { in read() method in LineNumberReader
157 public int read(char[] buffer, int offset, int count) throws IOException { in read() method in LineNumberReader
159 int read = super.read(buffer, offset, count); in read() local
DFilterInputStream.java113 public int read() throws IOException { in read() method in FilterInputStream
137 public int read(byte[] buffer, int offset, int count) throws IOException { in read() method in FilterInputStream
DFilterReader.java112 public int read() throws IOException { in read() method in FilterReader
137 public int read(char[] buffer, int offset, int count) throws IOException { in read() method in FilterReader
DSequenceInputStream.java137 public int read() throws IOException { in read() method in SequenceInputStream
184 public int read(byte[] buffer, int offset, int count) throws IOException { in read() method in SequenceInputStream
/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.java256 public abstract int read(ByteBuffer target) throws IOException; in read() method in SocketChannel
293 public abstract long read(ByteBuffer[] targets, int offset, int length) throws IOException; in read() method in SocketChannel
324 public synchronized final long read(ByteBuffer[] targets) throws IOException { in read() method in SocketChannel
DDatagramChannel.java247 public abstract int read(ByteBuffer target) throws IOException; in read() method in DatagramChannel
287 public abstract long read(ByteBuffer[] targets, int offset, int length) in read() method in DatagramChannel
319 public synchronized final long read(ByteBuffer[] targets) in read() method in DatagramChannel
DReadableByteChannel.java65 public int read(ByteBuffer buffer) throws IOException; in read() method
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
DSSLInputStream.java46 public abstract int read() throws IOException; in read() method in SSLInputStream
92 public byte[] read(int length) throws IOException { in read() method in SSLInputStream
101 public int read(byte[] b, int off, int len) throws IOException { in read() method in SSLInputStream
/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/libcore/net/http/
DUnknownLengthHttpInputStream.java35 @Override public int read(byte[] buffer, int offset, int count) throws IOException { in read() method in UnknownLengthHttpInputStream
41 int read = in.read(buffer, offset, count); in read() local
DFixedLengthInputStream.java39 @Override public int read(byte[] buffer, int offset, int count) throws IOException { in read() method in FixedLengthInputStream
45 int read = in.read(buffer, offset, Math.min(count, bytesRemaining)); in read() local
DChunkedInputStream.java39 @Override public int read(byte[] buffer, int offset, int count) throws IOException { in read() method in ChunkedInputStream
52 int read = in.read(buffer, offset, Math.min(count, bytesRemainingInChunk)); in read() local
/libcore/luni/src/main/java/java/util/zip/
DCheckedInputStream.java62 public int read() throws IOException { in read() method in CheckedInputStream
88 public int read(byte[] buf, int off, int nbytes) throws IOException { in read() method in CheckedInputStream
/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/lang/
DReadable.java39 int read(CharBuffer cb) throws IOException; in read() method
/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/security/
DDigestInputStream.java85 public int read() throws IOException { in read() method in DigestInputStream
118 public int read(byte[] b, int off, int len) throws IOException { in read() method in DigestInputStream

1234