type syscall.Iovec

13 uses

	syscall (current package)
		syscall_bsd.go#L378: 	var iov Iovec
		syscall_bsd.go#L426: 	var iov Iovec
		syscall_darwin_amd64.go#L32: func (iov *Iovec) SetLen(length int) {
		zsyscall_darwin_amd64.go#L1749: func writev(fd int, iovecs []Iovec) (cnt uintptr, err error) {
		ztypes_darwin_amd64.go#L210: type Iovec struct {
		ztypes_darwin_amd64.go#L229: 	Iov        *Iovec

	internal/poll
		fd_unix.go#L28: 	iovecs *[]syscall.Iovec
		fd_writev_darwin.go#L16: func writev(fd int, iovecs []syscall.Iovec) (uintptr, error)
		iovec_unix.go#L11: func newIovecWithBase(base *byte) syscall.Iovec {
		iovec_unix.go#L12: 	return syscall.Iovec{Base: base}
		writev.go#L24: 	var iovecs []syscall.Iovec
		writev.go#L55: 			fd.iovecs = new([]syscall.Iovec)
		writev.go#L68: 			iovecs[i] = syscall.Iovec{}