HomeSort by relevance Sort by last modified time
    Searched defs:writev (Results 1 - 25 of 35) sorted by null

1 2

  /bionic/libc/arch-arm/syscalls/
writev.S 5 ENTRY(writev) function
16 END(writev)
  /bionic/libc/arch-arm64/syscalls/
writev.S 5 ENTRY(writev) function
14 END(writev)
  /bionic/libc/arch-mips/syscalls/
writev.S 5 ENTRY(writev) function
19 END(writev)
  /bionic/libc/arch-mips64/syscalls/
writev.S 5 ENTRY(writev) function
25 END(writev)
  /bionic/libc/arch-x86/syscalls/
writev.S 5 ENTRY(writev) function
39 END(writev)
  /bionic/libc/arch-x86_64/syscalls/
writev.S 5 ENTRY(writev) function
15 END(writev)
  /bootable/recovery/otafault/
test.cpp 31 int writev = ota_write(fd, out, 4); local
32 printf("Write returned %d\n", writev);
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
writev.c 42 writev.c
46 Functions implementing the standard "writev" system call interface
81 // writev
84 // BSD writev interface for libc
96 writev( function
  /system/core/liblog/
uio.c 49 LIBLOG_ABI_PUBLIC int writev(int fd, const struct iovec* vecs, int count) { function
fake_log_device.c 329 * WIN32 does not have writev().
346 #define writev fake_writev macro
520 * Write the entire message to the log file with a single writev() call.
527 * If the file descriptor is actually a network socket, the writev()
528 * call may return with a partial write. Putting the writev() call in
530 * somewhat by wrapping the writev call in the Mutex.
534 int cc = writev(fileno(stderr), vec, v - vec);
  /libcore/ojluni/src/main/java/sun/nio/ch/
SocketDispatcher.java 58 long writev(FileDescriptor fd, long address, int len) throws IOException { method in class:SocketDispatcher
DatagramDispatcher.java 55 long writev(FileDescriptor fd, long address, int len) throws IOException { method in class:DatagramDispatcher
NativeDispatcher.java 67 abstract long writev(FileDescriptor fd, long address, int len) method in class:NativeDispatcher
FileDispatcherImpl.java 84 long writev(FileDescriptor fd, long address, int len) method in class:FileDispatcherImpl
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 351 @Override public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { method in class:BlockGuardOs
353 return os.writev(fd, buffers, offsets, byteCounts);
Linux.java 291 public native int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException; method in class:Linux
Os.java 183 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException; method in interface:Os
ForwardingOs.java 196 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
  /external/fio/os/windows/
posix.c 772 ssize_t writev(int fildes, const struct iovec *iov, int iovcnt) function
  /libcore/luni/src/main/java/android/system/
Os.java 642 * See <a href="http://man7.org/linux/man-pages/man2/writev.2.html">writev(2)</a>.
644 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
  /prebuilts/misc/common/robolectric/android-all/
android-all-6.0.1_r3-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-0.jar 
android-all-7.1.0_r7-robolectric-r1.jar 
android-all-8.0.0_r4-robolectric-0.jar 

Completed in 725 milliseconds

1 2