Searched defs:readBytes (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/native/
H A Dio_util.c77 readBytes(JNIEnv *env, jobject this, jbyteArray bytes, function
/libcore/tzdata/shared2/src/main/libcore/tzdata/shared2/
H A DFileUtils.java165 public static byte[] readBytes(File file, int maxBytes) throws IOException { method in class:FileUtils
/libcore/ojluni/src/main/java/java/sql/
H A DSQLInput.java34 * (<code>readLong</code>, <code>readBytes</code>, and so on)
183 byte[] readBytes() throws SQLException; method in interface:SQLInput
/libcore/ojluni/src/main/java/java/io/
H A DRandomAccessFile.java334 private int readBytes(byte b[], int off, int len) throws IOException { method in class:RandomAccessFile
365 return readBytes(b, off, len);
388 return readBytes(b, 0, b.length);
/libcore/ojluni/src/main/java/sun/nio/cs/
H A DStreamDecoder.java271 private int readBytes() throws IOException { method in class:StreamDecoder
351 int n = readBytes();
/libcore/ojluni/src/main/java/java/net/
H A DURLConnection.java1609 if (readBytes(c, 2, is) < 0) {
1618 if (readBytes(c, 2, is) < 0) {
1641 if (readBytes(c, 4, is) < 0) {
1693 if (readBytes(c, 16, is) < 0) {
1727 static private int readBytes(int c[], int len, InputStream is) method in class:URLConnection
/libcore/luni/src/main/java/libcore/io/
H A DLinux.java172 bytesRead = readBytes(fd, buffer, position, buffer.remaining());
174 bytesRead = readBytes(fd, NioUtils.unsafeArray(buffer), NioUtils.unsafeArrayOffset(buffer) + position, buffer.remaining());
182 return readBytes(fd, bytes, byteOffset, byteCount);
184 private native int readBytes(FileDescriptor fd, Object buffer, int offset, int byteCount) throws ErrnoException, InterruptedIOException; method in class:Linux

Completed in 1026 milliseconds