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

12 3 4 5 6 7 8 9

  /bionic/libc/arch-x86/syscalls/
writev.S 5 ENTRY(writev) function
39 END(writev)
  /libcore/ojluni/src/main/java/sun/nio/ch/
NativeDispatcher.java 67 abstract long writev(FileDescriptor fd, long address, int len) method in class:NativeDispatcher
SocketDispatcher.java 58 long writev(FileDescriptor fd, long address, int len) throws IOException { method in class:SocketDispatcher
  /prebuilts/go/darwin-x86/src/net/
writev_unix.go 20 return n, &OpError{Op: "writev", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
26 n, err = fd.pfd.Writev((*[][]byte)(v))
28 return n, wrapSyscallError("writev", err)
  /prebuilts/go/linux-x86/src/net/
writev_unix.go 20 return n, &OpError{Op: "writev", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
26 n, err = fd.pfd.Writev((*[][]byte)(v))
28 return n, wrapSyscallError("writev", err)
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
Uefi.inf 30 writev.c
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
  /external/valgrind/memcheck/tests/
writev1.stderr.exp 2 Syscall param writev(vector[...]) points to unaddressable byte(s)
writev1.c 56 if (writev(fd, wr_iovec, 2) < 0) {
66 fprintf(stderr, "Error writev returned a positive value\n");
68 if (writev(fd, wr_iovec, -1) < 0) {
75 fprintf(stderr, "Error writev returned a positive value\n");
  /system/tpm/trunks/
trunksd-seccomp-amd64.policy 40 writev: 1
trunksd-seccomp-arm.policy 36 writev: 1
trunksd-seccomp-arm64.policy 36 writev: 1
trunksd-seccomp-mips.policy 36 writev: 1
trunksd-seccomp-x86.policy 40 writev: 1
trunksd-seccomp-x86_64.policy 40 writev: 1
  /external/strace/tests/
readv.c 2 * Check decoding of readv and writev syscalls.
61 rc = writev(fds[1], efault, 42);
62 tprintf("writev(%d, %p, 42) = %ld %s (%m)\n",
88 tprintf("writev(%d, [], 0) = %ld\n",
89 fds[1], (long) writev(fds[1], w_iov, 0));
91 rc = writev(fds[1], w_iov + ARRAY_SIZE(w_iov_) - 1, 2);
92 tprintf("writev(%d, [{iov_base=\"%s\", iov_len=%u}, %p], 2)"
100 assert(writev(fds[1], w_iov, ARRAY_SIZE(w_iov_)) == (int) w_len);
102 tprintf("writev(%d, [{iov_base=\"%s\", iov_len=%u}"
  /external/strace/tests-m32/
readv.c 2 * Check decoding of readv and writev syscalls.
61 rc = writev(fds[1], efault, 42);
62 tprintf("writev(%d, %p, 42) = %ld %s (%m)\n",
88 tprintf("writev(%d, [], 0) = %ld\n",
89 fds[1], (long) writev(fds[1], w_iov, 0));
91 rc = writev(fds[1], w_iov + ARRAY_SIZE(w_iov_) - 1, 2);
92 tprintf("writev(%d, [{iov_base=\"%s\", iov_len=%u}, %p], 2)"
100 assert(writev(fds[1], w_iov, ARRAY_SIZE(w_iov_)) == (int) w_len);
102 tprintf("writev(%d, [{iov_base=\"%s\", iov_len=%u}"
  /external/strace/tests-mx32/
readv.c 2 * Check decoding of readv and writev syscalls.
61 rc = writev(fds[1], efault, 42);
62 tprintf("writev(%d, %p, 42) = %ld %s (%m)\n",
88 tprintf("writev(%d, [], 0) = %ld\n",
89 fds[1], (long) writev(fds[1], w_iov, 0));
91 rc = writev(fds[1], w_iov + ARRAY_SIZE(w_iov_) - 1, 2);
92 tprintf("writev(%d, [{iov_base=\"%s\", iov_len=%u}, %p], 2)"
100 assert(writev(fds[1], w_iov, ARRAY_SIZE(w_iov_)) == (int) w_len);
102 tprintf("writev(%d, [{iov_base=\"%s\", iov_len=%u}"
  /system/core/liblog/
uio.c 49 LIBLOG_ABI_PUBLIC int writev(int fd, const struct iovec* vecs, int count) { function
  /bionic/libc/dns/resolv/
herror.c 119 writev(STDERR_FILENO, iov, (v - iov) + 1);
  /bionic/libc/include/sys/
uio.h 39 ssize_t writev(int __fd, const struct iovec* __iov, int __count);
  /bionic/libc/upstream-netbsd/lib/libc/gen/
psignal.c 78 (void)writev(STDERR_FILENO, iov, (int)((v - iov) + 1));
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
herror.c 113 writev(STDERR_FILENO, iov, (v - iov) + 1);
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
uio.h 118 ssize_t writev(int, const struct iovec *, int);
  /external/android-clat/
tun.c 88 return writev(fd, out, iov_len);

Completed in 513 milliseconds

12 3 4 5 6 7 8 9