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

/libcore/luni/src/main/java/libcore/io/
H A DLinux.java156 bytesWritten = pwriteBytes(fd, buffer, position, buffer.remaining(), offset);
158 bytesWritten = pwriteBytes(fd, NioUtils.unsafeArray(buffer), NioUtils.unsafeArrayOffset(buffer) + position, buffer.remaining(), offset);
166 return pwriteBytes(fd, bytes, byteOffset, byteCount, offset);
168 private native int pwriteBytes(FileDescriptor fd, Object buffer, int bufferOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException; method in class:Linux

Completed in 29 milliseconds