Home
last modified time | relevance | path

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

12345

/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
DPositionedInputStream.java50 public int read() throws IOException { in read() method in PositionedInputStream
51 int read = in.read(); in read() local
60 public int read(byte b[], int off, int len) throws IOException { in read() method in PositionedInputStream
61 int read = in.read(b, off, len); in read() local
DPasswordProtectedInputStream.java47 public int read() throws IOException { in read() method in PasswordProtectedInputStream
48 int read = in.read(); in read() local
57 public int read(byte b[], int off, int len) throws IOException { in read() method in PasswordProtectedInputStream
58 int read = in.read(b, off, len); in read() local
/dalvik/libcore/luni/src/main/java/java/io/
DObjectInput.java60 public int read() throws IOException; in read() method
74 public int read(byte[] buffer) throws IOException; in read() method
94 public int read(byte[] buffer, int offset, int count) throws IOException; in read() method
DFilterInputStream.java134 public int read() throws IOException { in read() method in FilterInputStream
153 public int read(byte[] buffer) throws IOException { in read() method in FilterInputStream
178 public int read(byte[] buffer, int offset, int count) throws IOException { in read() method in FilterInputStream
DInputStream.java127 public abstract int read() throws IOException; in read() method in InputStream
140 public int read(byte[] b) throws IOException { in read() method in InputStream
168 public int read(byte[] b, int offset, int length) throws IOException { in read() method in InputStream
DBufferedInputStream.java252 public synchronized int read() throws IOException { in read() method in BufferedInputStream
297 public synchronized int read(byte[] buffer, int offset, int length) in read() method in BufferedInputStream
339 int read; in read() local
423 long read = count - pos; in skip() local
DReader.java135 public int read() throws IOException { in read() method in Reader
158 public int read(char[] buf) throws IOException { in read() method in Reader
184 public abstract int read(char[] buf, int offset, int count) in read() method in Reader
DStringReader.java133 public int read() throws IOException { in read() method in StringReader
168 public int read(char[] buf, int offset, int len) throws IOException { in read() method in StringReader
194 int read = end - pos; in read() local
DStringBufferInputStream.java94 public synchronized int read() { in read() method in StringBufferInputStream
120 public synchronized int read(byte[] b, int offset, int length) { in read() method in StringBufferInputStream
DBufferedReader.java228 public int read() throws IOException { in read() method in BufferedReader
269 public int read(char[] buffer, int offset, int length) throws IOException { in read() method in BufferedReader
305 int read; in read() local
506 long read = count - pos; in skip() local
DLineNumberReader.java122 public int read() throws IOException { in read() method in LineNumberReader
167 public int read(char[] buffer, int offset, int count) throws IOException { in read() method in LineNumberReader
169 int read = super.read(buffer, offset, count); in read() local
DFilterReader.java122 public int read() throws IOException { in read() method in FilterReader
148 public int read(char[] buffer, int offset, int count) throws IOException { in read() method in FilterReader
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/net/
DSocketInputStream.java59 public int read() throws IOException { in read() method in SocketInputStream
66 public int read(byte[] buffer) throws IOException { in read() method in SocketInputStream
71 public int read(byte[] buffer, int offset, int count) throws IOException { in read() method in SocketInputStream
/dalvik/libcore/nio/src/main/java/java/nio/channels/
DScatteringByteChannel.java57 public long read(ByteBuffer[] buffers) throws IOException; in read() method
98 public long read(ByteBuffer[] buffers, int offset, int length) in read() method
DSocketChannel.java291 public abstract int read(ByteBuffer target) throws IOException; in read() method in SocketChannel
330 public abstract long read(ByteBuffer[] targets, int offset, int length) in read() method in SocketChannel
365 public synchronized final long read(ByteBuffer[] targets) in read() method in SocketChannel
DDatagramChannel.java287 public abstract int read(ByteBuffer target) throws IOException; in read() method in DatagramChannel
329 public abstract long read(ByteBuffer[] targets, int offset, int length) in read() method in DatagramChannel
363 public synchronized final long read(ByteBuffer[] targets) in read() method in DatagramChannel
DReadableByteChannel.java73 public int read(ByteBuffer buffer) throws IOException; in read() method
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
DSSLInputStream.java52 public abstract int read() throws IOException; in read() method in SSLInputStream
111 public byte[] read(int length) throws IOException { in read() method in SSLInputStream
122 public int read(byte[] b, int off, int len) throws IOException { in read() method in SSLInputStream
/dalvik/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
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
DAudioInputStream.java65 public int read() throws IOException { in read() method in AudioInputStream
90 public int read(byte[] b) throws IOException { in read() method in AudioInputStream
94 public int read(byte[] b, int off, int len) throws IOException { in read() method in AudioInputStream
127 int read = read(skipBuf, 0, frameSize); in skip() local
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/io/
DDigestInputStream.java22 public int read() in read() method in DigestInputStream
34 public int read( in read() method in DigestInputStream
DMacInputStream.java22 public int read() in read() method in MacInputStream
34 public int read( in read() method in MacInputStream
/dalvik/libcore/crypto/src/main/java/javax/crypto/
DCipherInputStream.java87 public int read() throws IOException { in read() method in CipherInputStream
127 public int read(byte[] b) throws IOException { in read() method in CipherInputStream
154 public int read(byte[] b, int off, int len) throws IOException { in read() method in CipherInputStream
/dalvik/libcore/archive/src/main/java/java/util/zip/
DCheckedInputStream.java63 public int read() throws IOException { in read() method in CheckedInputStream
90 public int read(byte[] buf, int off, int nbytes) throws IOException { in read() method in CheckedInputStream
/dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
DWriteOnlyFileChannel.java64 public long read(ByteBuffer[] buffers, int offset, int length) in read() method in WriteOnlyFileChannel
73 public int read(ByteBuffer buffer) throws IOException { in read() method in WriteOnlyFileChannel
78 public int read(ByteBuffer buffer, long position) throws IOException { in read() method in WriteOnlyFileChannel

12345