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

/libcore/ojluni/src/main/java/sun/nio/ch/
H A DSocketDispatcher.java56 long writev(FileDescriptor fd, long address, int len) throws IOException { method in class:SocketDispatcher
H A DDatagramDispatcher.java55 long writev(FileDescriptor fd, long address, int len) throws IOException { method in class:DatagramDispatcher
H A DNativeDispatcher.java67 abstract long writev(FileDescriptor fd, long address, int len) method in class:NativeDispatcher
H A DFileDispatcherImpl.java72 long writev(FileDescriptor fd, long address, int len) method in class:FileDispatcherImpl
/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java348 @Override public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { method in class:BlockGuardOs
350 return os.writev(fd, buffers, offsets, byteCounts);
H A DForwardingOs.java194 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 DLinux.java289 public native int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException; method in class:Linux
H A DOs.java181 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException; method in interface:Os
/libcore/luni/src/main/java/android/system/
H A DOs.java622 * See <a href="http://man7.org/linux/man-pages/man2/writev.2.html">writev(2)</a>.
624 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

Completed in 318 milliseconds