Searched refs:iov (Results 226 - 233 of 233) sorted by relevance

12345678910

/freebsd-11.0-release/contrib/libpcap/
H A Dpcap-linux.c1484 struct iovec iov; local
1534 msg.msg_iov = &iov;
1540 iov.iov_len = handle->bufsize - offset;
1541 iov.iov_base = bp + offset;
1669 len = packet_len > iov.iov_len ? iov.iov_len : packet_len;
/freebsd-11.0-release/contrib/ntp/sntp/libevent/
H A Dbuffer.c2398 IOV_TYPE iov[NUM_WRITE_IOVEC]; local
2415 iov[i].IOV_PTR_FIELD = (void *) (chain->buffer + chain->misalign);
2418 iov[i++].IOV_LEN_FIELD = (IOV_LEN_TYPE)chain->off;
2422 iov[i++].IOV_LEN_FIELD = (IOV_LEN_TYPE)howmuch;
2433 if (WSASend(fd, iov, i, &bytesSent, 0, NULL, NULL))
2439 n = writev(fd, iov, i);
/freebsd-11.0-release/contrib/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h1678 #define __sanitizer_syscall_pre_vmsplice(fd, iov, nr_segs, flags) \
1679 __sanitizer_syscall_pre_impl_vmsplice((long)(fd), (long)(iov), \
1681 #define __sanitizer_syscall_post_vmsplice(res, fd, iov, nr_segs, flags) \
1682 __sanitizer_syscall_post_impl_vmsplice(res, (long)(fd), (long)(iov), \
2958 void __sanitizer_syscall_pre_impl_vmsplice(long fd, long iov, long nr_segs,
2960 void __sanitizer_syscall_post_impl_vmsplice(long res, long fd, long iov,
/freebsd-11.0-release/contrib/gcc/
H A DMakefile.in766 GCOV_IO_H = gcov-io.h gcov-iov.h auto-host.h
1055 gcov-iov$(build_exeext) gcov$(exeext) gcov-dump$(exeext) \
1484 $(srcdir)/gcov-io.h $(srcdir)/gcov-io.c gcov-iov.h $(SFP_MACHINE)
3161 # gcov-iov.c is run on the build machine to generate gcov-iov.h from version.c
3162 build/gcov-iov.o: gcov-iov.c $(BCONFIG_H) coretypes.h $(GTM_H) \
3165 build/gcov-iov$(build_exeext): build/gcov-iov.o
3166 $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) build/gcov-iov
[all...]
/freebsd-11.0-release/sys/kern/
H A Dsystrace_args.c2643 uarg[1] = (intptr_t) p->iov; /* struct iovec * */
2656 uarg[1] = (intptr_t) p->iov; /* struct iovec * */
/freebsd-11.0-release/sys/compat/freebsd32/
H A Dfreebsd32_systrace_args.c2481 uarg[1] = (intptr_t) p->iov; /* struct iovec * */
2494 uarg[1] = (intptr_t) p->iov; /* struct iovec * */
/freebsd-11.0-release/sys/sys/
H A Dsysproto.h1401 char iov_l_[PADL_(struct iovec *)]; struct iovec * iov; char iov_r_[PADR_(struct iovec *)]; member in struct:sctp_generic_sendmsg_iov_args
1410 char iov_l_[PADL_(struct iovec *)]; struct iovec * iov; char iov_r_[PADR_(struct iovec *)]; member in struct:sctp_generic_recvmsg_args
/freebsd-11.0-release/contrib/libstdc++/
H A Dconfigure30097 struct iovec iov[2];
30098 writev(0, iov, 0);
[all...]

Completed in 394 milliseconds

12345678910