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

1 2 3 45 6 7 8 9

  /system/netd/libnetdutils/include/netdutils/
Syscalls.h 64 virtual StatusOr<size_t> writev(Fd fd, const std::vector<iovec>& iov) const = 0;
  /external/strace/
sys_func.h 321 extern SYS_FUNC(writev);
  /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);
Os.java 183 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException; method in interface:Os
  /prebuilts/go/darwin-x86/src/net/
tcpsock_test.go 679 for _, writev := range []bool{false, true} {
680 t.Run(fmt.Sprintf("writev=%v", writev), func(t *testing.T) {
699 if writev {
writev_test.go 177 t.Errorf("writev call sum = %v; want %v", gotSum, wantSum)
  /prebuilts/go/darwin-x86/src/runtime/
write_err_android.go 58 // does this with writev). Each log is its own line, so we need to
  /prebuilts/go/linux-x86/src/net/
tcpsock_test.go 679 for _, writev := range []bool{false, true} {
680 t.Run(fmt.Sprintf("writev=%v", writev), func(t *testing.T) {
699 if writev {
writev_test.go 177 t.Errorf("writev call sum = %v; want %v", gotSum, wantSum)
  /prebuilts/go/linux-x86/src/runtime/
write_err_android.go 58 // does this with writev). Each log is its own line, so we need to
  /bionic/libc/upstream-netbsd/lib/libc/isc/
ev_streams.c 276 bytes = writev(fd, str->iovCur, str->iovCurCount);
  /device/google/cuttlefish_common/common/commands/wifi_relay/
mac80211_hwsim.cpp 94 (void)writev(pcap, iov, 2);
  /external/ltp/testcases/kernel/io/direct_io/
diotest6.c 26 * Tests the combinations of buffered/direct readv(), writev() calls.
130 n = writev(fd_w, iov_w, nvector);
132 tst_resm(TFAIL | TERRNO, "writev failed, ret = %zd", n);
  /libcore/ojluni/src/main/java/sun/nio/ch/
IOUtil.java 40 * Max number of iovec structures that readv/writev supports
148 long bytesWritten = nd.writev(fd, vec.address, iov_len);
  /libcore/ojluni/src/main/native/
FileDispatcherImpl.c 118 return convertLongReturnVal(env, writev(fd, iov, len), JNI_FALSE);
  /system/core/debuggerd/libdebuggerd/
utility.cpp 117 TEMP_FAILURE_RETRY(writev(kmsg_fd.get(), iov, 3));
  /system/core/trusty/storage/lib/
storage.c 110 rc = writev(session, tx_iovs, tx_iovcnt);
  /system/core/logd/
LogTags.cpp 581 TEMP_FAILURE_RETRY(writev(pmsg_fd, Vec, arraysize(Vec)));
584 TEMP_FAILURE_RETRY(writev(pmsg_fd, Vec, arraysize(Vec)));
588 TEMP_FAILURE_RETRY(writev(pmsg_fd, Vec, arraysize(Vec)));
  /device/google/cuttlefish_common/common/libs/fs/
shared_fd.h 491 ssize_t WriteV(struct iovec* iov, int iovcount) {
493 ssize_t rval = TEMP_FAILURE_RETRY(writev(fd_, iov, iovcount));
  /external/dhcpcd-6.8.2/
control.c 386 if (writev(fd->fd, iov, 2) == -1) {
388 "%s: writev fd %d: %m", __func__, fd->fd);
  /external/fio/engines/
sync.c 349 ret = writev(f->fd, sd->iovecs, sd->queued);
  /external/ltp/testcases/kernel/fs/ftest/
ftest03.c 23 * ftest03.c -- test file I/O with readv and writev (ported from SPIE section2/filesuite/ftest4.c, by Airong Zhang)
26 * lseek, readv, writev,
38 * Modified by G. Stevens to use readv and writev.
287 /* Stuff for the writev call */
492 * Writev it.
501 writev(fd, &val_iovec[0], MAXIOVCNT)) < csize) {
511 "\tTest[%d]: writev fail at %x xfr %d, errno = %d.",
ftest07.c 23 * ftest07.c -- test file I/O with readv and writev (ported from SPIE,
29 * lseek64, readv, writev,
41 * Modified by G. Stevens to use readv and writev.
287 /* Stuff for the writev call */
487 * Writev it.
496 writev(fd, &val_iovec[0], MAXIOVCNT)) < csize) {
506 "\tTest[%d]: writev fail at %Lx xfr %d, errno = %d.",
  /external/strace/linux/32/
syscallent.h 70 [ 66] = { 3, TD, SEN(writev), "writev" },
  /external/swiftshader/third_party/LLVM/lib/Support/
raw_ostream.cpp 528 // Use ::writev() where available.
531 ret = ::writev(FD, &IOV, 1);

Completed in 737 milliseconds

1 2 3 45 6 7 8 9