Searched refs:writev (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/java/java/nio/
H A DIoVec.java26 * and writev(2) calls.
81 return Libcore.os.writev(fd, ioBuffers, offsets, byteCounts);
/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java316 @Override public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { method in class:BlockGuardOs
318 return os.writev(fd, buffers, offsets, byteCounts);
H A DOs.java169 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException; method in interface:Os
H A DForwardingOs.java176 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return os.writev(fd, buffers, offsets, byteCounts); } method in class:ForwardingOs
H A DPosix.java274 public native int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException; method in class:Posix
/libcore/luni/src/main/java/android/system/
H A DOs.java563 * See <a href="http://man7.org/linux/man-pages/man2/writev.2.html">writev(2)</a>.
565 public static int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return Libcore.os.writev(fd, buffers, offsets, byteCounts); } method in class:Os
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp1852 return IO_FAILURE_RETRY(env, ssize_t, writev, javaFd, ioVec.get(), ioVec.size());
1976 NATIVE_METHOD(Posix, writev, "(Ljava/io/FileDescriptor;[Ljava/lang/Object;[I[I)I"),

Completed in 64 milliseconds