Searched refs:iovec (Results 101 - 125 of 389) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_syscalls.inc133 static void kernel_write_iovec(const __sanitizer_iovec *iovec,
136 SSIZE_T sz = Min(iovec[i].iov_len, maxlen);
137 POST_WRITE(iovec[i].iov_base, sz);
144 static void kernel_read_iovec(const __sanitizer_iovec *iovec,
146 POST_READ(iovec, sizeof(*iovec) * iovlen);
148 SSIZE_T sz = Min(iovec[i].iov_len, maxlen);
149 POST_READ(iovec[i].iov_base, sz);
1326 __sanitizer_iovec *iovec = (__sanitizer_iovec*)buf;
1328 PRE_READ(iovec[
[all...]
H A Dsanitizer_platform_limits_openbsd.cpp171 CHECK_TYPE_SIZE(iovec); variable
172 CHECK_SIZE_AND_OFFSET(iovec, iov_base);
173 CHECK_SIZE_AND_OFFSET(iovec, iov_len);
/freebsd-11-stable/contrib/apr/include/
H A Dapr_network_io.h294 /** An iovec to store the headers sent before the file. */
295 struct iovec* headers;
296 /** number of headers in the iovec */
298 /** An iovec to store the trailers sent after the file. */
299 struct iovec* trailers;
300 /** number of trailers in the iovec */
570 * @param vec The array of iovec structs containing the data to send
571 * @param nvec The number of iovec structs in the array
586 const struct iovec *vec,
/freebsd-11-stable/contrib/sendmail/libmilter/
H A Dcomm.c18 static ssize_t retry_writev __P((socket_t, struct iovec *, int, struct timeval *));
243 struct iovec *iov;
331 struct iovec iov[2];
/freebsd-11-stable/usr.sbin/camdd/
H A Dcamdd.c208 struct iovec *iovec; member in struct:camdd_buf_data
473 int camdd_buf_sg_create(struct camdd_buf *buf, int iovec,
741 } else if (data->iovec != NULL) {
743 free(data->iovec[data->sg_count - 1].iov_base);
746 free(data->iovec);
747 data->iovec = NULL;
811 camdd_buf_sg_create(struct camdd_buf *buf, int iovec, uint32_t sector_size, argument
841 if (iovec == 0) {
852 data->iovec
[all...]
/freebsd-11-stable/usr.sbin/bhyve/
H A Dpci_virtio_console.c91 typedef void (pci_vtcon_cb_t)(struct pci_vtcon_port *, void *, struct iovec *,
160 static void pci_vtcon_sock_tx(struct pci_vtcon_port *, void *, struct iovec *,
380 struct iovec iov;
431 pci_vtcon_sock_tx(struct pci_vtcon_port *port, void *arg, struct iovec *iov,
457 pci_vtcon_control_tx(struct pci_vtcon_port *port, void *arg, struct iovec *iov,
538 struct iovec iov;
565 struct iovec iov[1];
H A Dpci_virtio_rnd.c110 struct iovec iov;
/freebsd-11-stable/sys/sys/
H A Djail.h109 struct iovec;
112 int jail_set(struct iovec *, unsigned int, int);
113 int jail_get(struct iovec *, unsigned int, int);
H A Dsocket.h420 struct iovec *msg_iov; /* scatter/gather array */
566 struct iovec *msg_iov; /* scatter/gather array */
594 struct iovec *headers; /* pointer to an array of header struct iovec's */
595 int hdr_cnt; /* number of header iovec's */
596 struct iovec *trailers; /* pointer to an array of trailer struct iovec's */
597 int trl_cnt; /* number of trailer iovec's */
/freebsd-11-stable/sys/arm64/arm64/
H A Duio_machdep.c62 struct iovec *iov;
/freebsd-11-stable/sys/amd64/amd64/
H A Duio_machdep.c62 struct iovec *iov;
/freebsd-11-stable/sys/arm/arm/
H A Duio_machdep.c63 struct iovec *iov;
/freebsd-11-stable/sbin/mount_udf/
H A Dmount_udf.c78 struct iovec *iov;
/freebsd-11-stable/sys/powerpc/powerpc/
H A Duio_machdep.c65 struct iovec *iov;
/freebsd-11-stable/sys/riscv/riscv/
H A Duio_machdep.c62 struct iovec *iov;
/freebsd-11-stable/sys/sparc64/sparc64/
H A Duio_machdep.c67 struct iovec *iov;
/freebsd-11-stable/sys/mips/mips/
H A Duio_machdep.c66 struct iovec *iov;
H A Dmem.c77 struct iovec *iov;
/freebsd-11-stable/sys/i386/i386/
H A Duio_machdep.c63 struct iovec *iov;
/freebsd-11-stable/contrib/libxo/libxo/
H A Dxo_syslog.c181 struct iovec iov[3];
182 struct iovec *v = iov;
264 struct iovec iov[2];
265 struct iovec *v = iov;
/freebsd-11-stable/sys/compat/freebsd32/
H A Dfreebsd32_util.h118 struct iovec **iov, int error);
/freebsd-11-stable/contrib/binutils/bfd/
H A Dbfdwin.c158 && (abfd->iovec == NULL
159 || abfd->iovec->bseek (abfd, offset, SEEK_SET) != 0))
H A Dcache.c387 abfd->iovec = &cache_iovec;
412 if (abfd->iovec != &cache_iovec)
/freebsd-11-stable/lib/libopenbsd/
H A Dimsg-buffer.c149 struct iovec iov[IOV_MAX];
227 struct iovec iov[IOV_MAX];
H A Dimsg.c57 struct iovec iov;
188 pid_t pid, int fd, const struct iovec *iov, int iovcnt)

Completed in 315 milliseconds

1234567891011>>