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

1 2

  /bionic/libc/arch-arm/syscalls/
readv.S 5 ENTRY(readv) function
16 END(readv)
  /bionic/libc/arch-arm64/syscalls/
readv.S 5 ENTRY(readv) function
14 END(readv)
  /bionic/libc/arch-mips/syscalls/
readv.S 5 ENTRY(readv) function
19 END(readv)
  /bionic/libc/arch-mips64/syscalls/
readv.S 5 ENTRY(readv) function
25 END(readv)
  /bionic/libc/arch-x86/syscalls/
readv.S 5 ENTRY(readv) function
39 END(readv)
  /bionic/libc/arch-x86_64/syscalls/
readv.S 5 ENTRY(readv) function
15 END(readv)
  /bootable/recovery/otafault/
test.cpp 29 int readv = ota_read(fd, buf, 4); local
30 printf("Read returned %d\n", readv);
  /system/core/liblog/
uio.c 25 LIBLOG_ABI_PUBLIC int readv(int fd, struct iovec* vecs, int count) { function
  /libcore/ojluni/src/main/java/sun/nio/ch/
SocketDispatcher.java 46 long readv(FileDescriptor fd, long address, int len) throws IOException { method in class:SocketDispatcher
DatagramDispatcher.java 45 long readv(FileDescriptor fd, long address, int len) throws IOException { method in class:DatagramDispatcher
NativeDispatcher.java 55 abstract long readv(FileDescriptor fd, long address, int len) method in class:NativeDispatcher
FileDispatcherImpl.java 64 long readv(FileDescriptor fd, long address, int len) throws IOException { method in class:FileDispatcherImpl
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 267 @Override public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { method in class:BlockGuardOs
269 return os.readv(fd, buffers, offsets, byteCounts);
Linux.java 189 public native int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException; method in class:Linux
Os.java 137 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException; method in interface:Os
ForwardingOs.java 150 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return os.readv(fd, buffers, offsets, byteCounts); } method in class:ForwardingOs
  /toolchain/binutils/binutils-2.27/gold/
fileread.cc 89 readv(int, const iovec*, int) function
635 // Use readv to read COUNT entries from RM starting at START. BASE
682 ssize_t got = ::readv(this->descriptor_, iov, iov_index);
685 gold_fatal(_("%s: readv failed: %s"),
  /external/fio/os/windows/
posix.c 765 ssize_t readv(int fildes, const struct iovec *iov, int iovcnt) function
  /libcore/luni/src/main/java/android/system/
Os.java 427 * See <a href="http://man7.org/linux/man-pages/man2/readv.2.html">readv(2)</a>.
429 public static int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return Libcore.os.readv(fd, buffers, offsets, byteCounts); } method in class:Os
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pthread.h 476 #define readv(...) (pthread_testcancel(), readv(__VA_ARGS__)) macro
    [all...]
  /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 145 milliseconds

1 2