HomeSort by relevance Sort by last modified time
    Searched refs:readv (Results 26 - 50 of 137) sorted by null

12 3 4 5 6

  /bionic/libc/include/sys/
uio.h 38 ssize_t readv(int __fd, const struct iovec* __iov, int __count);
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
uio.h 117 ssize_t readv(int, const struct iovec *, int);
  /external/ltp/testcases/kernel/syscalls/readv/
readv03.c 26 * Testcase to check the error condition of the readv(2) system call
30 * readv()
34 * call readv() when fd refers to a directory.
93 if (readv(fd, rd_iovec, 1) < 0) {
101 tst_resm(TFAIL, "Error: readv returned a positive "
  /libcore/ojluni/src/main/java/sun/nio/ch/
DatagramDispatcher.java 45 long readv(FileDescriptor fd, long address, int len) throws IOException { method in class:DatagramDispatcher
FileDispatcherImpl.java 64 long readv(FileDescriptor fd, long address, int len) throws IOException { method in class:FileDispatcherImpl
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
uio.h 40 extern ssize_t readv (int __fd, __const struct iovec *__iovec, int __count)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
uio.h 40 extern ssize_t readv (int __fd, __const struct iovec *__iovec, int __count)
  /system/core/trusty/storage/proxy/
ipc.c 74 rc = readv(tipc_fd, iovs, 2);
  /external/valgrind/memcheck/tests/
writev1.c 76 if (readv(fd, wr_iovec, -1) < 0) {
83 fprintf(stderr, "Error readv returned a positive value\n");
  /system/core/trusty/keymaster/
trusty_keymaster_ipc.cpp 82 rc = readv(handle_, iov, 2);
  /bionic/tests/
sys_uio_test.cpp 37 ASSERT_EQ(10, readv(tf.fd, ios, 2));
  /libcore/ojluni/src/main/native/
net_util_md.h 69 #define NET_ReadV readv
linux_close.cpp 131 BLOCKING_IO_RETURN_INT( s, readv(s, vector, count) );
  /external/libpcap/lbl/
os-sunos4.h 133 int readv(int, struct iovec *, int);
  /external/tcpdump/lbl/
os-sunos4.h 134 int readv(int, struct iovec *, int);
  /external/selinux/libselinux/src/
setrans_client.c 148 while (((count = readv(fd, resp_hdr, 3)) < 0) && (errno == EINTR)) ;
160 /* coveriety doesn't realize that data will be initialized in readv */
166 while (((count = readv(fd, &resp_data, 1))) < 0 && (errno == EINTR)) ;
  /external/selinux/mcstrans/src/
mcstransd.c 212 while (((count = readv(fd, req_hdr, 3)) < 0) && (errno == EINTR));
248 while (((count = readv(fd, req_data, 2)) < 0) && (errno == EINTR));
  /prebuilts/go/darwin-x86/src/net/
iprawsock_posix.go 46 // TODO(cw,rsc): consider using readv if we know the family
  /prebuilts/go/linux-x86/src/net/
iprawsock_posix.go 46 // TODO(cw,rsc): consider using readv if we know the family
  /external/ltp/testcases/kernel/io/direct_io/
diotest5.c 26 * readv() and writev() calls.
28 * [1] Direct readv, Buffered writev
29 * [2] Direct writev, Buffered readv
30 * [3] Direct readv, Direct writev
31 * The bufsize should be in n*4k size for direct readv, writev. The offset
132 tst_resm(TFAIL, "lseek before readv failed: %s",
136 if (readv(fd_r, iov2, nvector) < 0) {
137 tst_resm(TFAIL, "readv failed: %s", strerror(errno));
141 tst_resm(TFAIL, "readv/writev comparision failed");
  /external/strace/
io.c 129 SYS_FUNC(readv)
sys_func.h 196 extern SYS_FUNC(readv);
  /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);
  /bionic/libc/upstream-netbsd/lib/libc/isc/
ev_streams.c 299 bytes = readv(fd, str->iovCur, str->iovCurCount);
  /cts/tests/tests/security/jni/
android_security_cts_NativeCodeTest.cpp 236 readv(fd[0], iovs, BUFS);

Completed in 663 milliseconds

12 3 4 5 6