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

/libcore/luni/src/main/java/libcore/io/
H A DLinux.java138 bytesRead = preadBytes(fd, buffer, position, buffer.remaining(), offset);
140 bytesRead = preadBytes(fd, NioUtils.unsafeArray(buffer), NioUtils.unsafeArrayOffset(buffer) + position, buffer.remaining(), offset);
148 return preadBytes(fd, bytes, byteOffset, byteCount, offset);
150 private native int preadBytes(FileDescriptor fd, Object buffer, int bufferOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException; method in class:Linux

Completed in 18 milliseconds