Searched refs:iov (Results 201 - 211 of 211) sorted by relevance

123456789

/openbsd-current/gnu/usr.bin/cc/cc_tools/
H A DMakefile317 gcov-iov.h:
320 GENSRCS+= gcov-iov.h
/openbsd-current/sbin/isakmpd/
H A Disakmp_cfg.c666 msg->iov[0].iov_len - ISAKMP_HDR_SZ - hash_len);
H A Dsa.c930 GET_ISAKMP_HDR_RCOOKIE(msg->iov[0].iov_base,
/openbsd-current/usr.bin/ssh/
H A Dsftp-client.c147 struct iovec iov[2]; local
154 iov[0].iov_base = mlen;
155 iov[0].iov_len = sizeof(mlen);
156 iov[1].iov_base = (u_char *)sshbuf_ptr(m);
157 iov[1].iov_len = sshbuf_len(m);
159 if (atomiciov6(writev, conn->fd_out, iov, 2, sftpio,
/openbsd-current/sys/dev/pci/
H A Dif_qwx_pci.c3489 struct iovec iov[3]; local
3540 iov[0].iov_base = (void *)rddm;
3541 iov[0].iov_len = len;
3542 iov[1].iov_len = 0;
3543 uio.uio_iov = &iov[0];
/openbsd-current/gnu/llvm/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h1686 #define __sanitizer_syscall_pre_vmsplice(fd, iov, nr_segs, flags) \
1687 __sanitizer_syscall_pre_impl_vmsplice((long)(fd), (long)(iov), \
1689 #define __sanitizer_syscall_post_vmsplice(res, fd, iov, nr_segs, flags) \
1690 __sanitizer_syscall_post_impl_vmsplice(res, (long)(fd), (long)(iov), \
2980 void __sanitizer_syscall_pre_impl_vmsplice(long fd, long iov, long nr_segs,
2982 void __sanitizer_syscall_post_impl_vmsplice(long res, long fd, long iov,
/openbsd-current/usr.sbin/nsd/
H A Dserver.c4475 struct iovec iov[2]; local
4476 iov[0].iov_base = (uint8_t*)&n_tcplen + data->bytes_transmitted;
4477 iov[0].iov_len = sizeof(n_tcplen) - data->bytes_transmitted;
4478 iov[1].iov_base = buffer_begin(q->packet);
4479 iov[1].iov_len = buffer_limit(q->packet);
4480 sent = writev(fd, iov, 2);
/openbsd-current/usr.sbin/ldapd/
H A Dbtree.c736 struct iovec iov[BT_COMMIT_PAGES]; local
789 iov[n].iov_len = bt->head.psize;
790 iov[n].iov_base = mp->page;
801 rc = writev(bt->fd, iov, n);
/openbsd-current/gnu/llvm/compiler-rt/lib/dfsan/
H A Ddfsan_custom.cpp1882 struct iovec *iov = &msg->msg_iov[i]; local
1884 bytes_written < iov->iov_len ? bytes_written : iov->iov_len;
1885 dfsan_set_label(0, iov->iov_base, iov_written);
/openbsd-current/sys/nfs/
H A Dnfs_serv.c533 struct iovec iov; local
581 iov.iov_base = mtod(mp, caddr_t);
582 iov.iov_len = mp->m_len;
584 uio.uio_iov = &iov;
752 panic("nfsrv_read iov");
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc1136 INTERCEPTOR_WITH_SUFFIX(SSIZE_T, readv, int fd, __sanitizer_iovec *iov,
1139 COMMON_INTERCEPTOR_ENTER(ctx, readv, fd, iov, iovcnt);
1141 SSIZE_T res = REAL(readv)(fd, iov, iovcnt);
1142 if (res > 0) write_iovec(ctx, iov, iovcnt, res);
1152 INTERCEPTOR(SSIZE_T, preadv, int fd, __sanitizer_iovec *iov, int iovcnt,
1155 COMMON_INTERCEPTOR_ENTER(ctx, preadv, fd, iov, iovcnt, offset);
1157 SSIZE_T res = REAL(preadv)(fd, iov, iovcnt, offset);
1158 if (res > 0) write_iovec(ctx, iov, iovcnt, res);
1168 INTERCEPTOR(SSIZE_T, preadv64, int fd, __sanitizer_iovec *iov, int iovcnt,
1171 COMMON_INTERCEPTOR_ENTER(ctx, preadv64, fd, iov, iovcn
[all...]

Completed in 410 milliseconds

123456789