Searched refs:iovec (Results 1 - 25 of 167) sorted by relevance

1234567

/macosx-10.10.1/remote_cmds-47/wall.tproj/
H A Dttymsg.h3 const char *ttymsg(struct iovec *, int, const char *, int);
H A Dttymsg.c65 ttymsg(struct iovec *iov, int iovcnt, const char *line, int tmout)
67 struct iovec localiov[7];
118 iovcnt * sizeof(struct iovec));
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/_types/
H A D_iovec_t.h30 struct iovec { struct
/macosx-10.10.1/OpenSSH-189/openssh/
H A Datomicio.h46 atomiciov6(ssize_t (*f) (int, const struct iovec *, int), int fd,
47 const struct iovec *_iov, int iovcnt, int (*cb)(void *, size_t), void *);
48 size_t atomiciov(ssize_t (*)(int, const struct iovec *, int),
49 int, const struct iovec *, int);
H A Datomicio.c96 atomiciov6(ssize_t (*f) (int, const struct iovec *, int), int fd,
97 const struct iovec *_iov, int iovcnt,
102 struct iovec iov_array[IOV_MAX], *iov = iov_array;
161 atomiciov(ssize_t (*f) (int, const struct iovec *, int), int fd,
162 const struct iovec *_iov, int iovcnt)
/macosx-10.10.1/dcerpc-61/dcerpc/idl_lib/
H A Dsscmasrv.c153 rpc_iovector_t iovec; local
160 iovec.num_elt = 1;
161 iovec.elt[0].buff_dealloc = NULL;
162 iovec.elt[0].flags = rpc_c_iovector_elt_reused;
163 iovec.elt[0].buff_addr = (byte_p_t)&fault_buff;
164 iovec.elt[0].buff_len = 4;
165 iovec.elt[0].data_addr = (byte_p_t)&fault_buff;
166 iovec.elt[0].data_len = 4;
213 rpc_call_transmit_fault( h, &iovec, &st );
238 rpc_iovector_t iovec; local
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Dbfdio.c148 if (abfd->iovec)
149 nread = abfd->iovec->bread (abfd, ptr, size);
191 if (abfd->iovec)
192 nwrote = abfd->iovec->bwrite (abfd, ptr, size);
216 if (abfd->iovec)
218 ptr = abfd->iovec->btell (abfd);
236 if (abfd->iovec)
237 return abfd->iovec->bflush (abfd);
251 if (abfd->iovec)
252 result = abfd->iovec
[all...]
/macosx-10.10.1/Libinfo-459/dns.subproj/
H A Dherror.c85 struct iovec iov[4];
86 register struct iovec *v = iov;
/macosx-10.10.1/xnu-2782.1.97/tools/tests/libMicro/
H A Dwritev.c46 struct iovec *ts_iov;
112 ts->ts_iov = (struct iovec *)malloc(
113 optv * sizeof (struct iovec));
/macosx-10.10.1/apr-32/apr/apr/include/
H A Dapr_want.h28 * APR_WANT_IOVEC: struct iovec
94 struct iovec struct
/macosx-10.10.1/apr-32/apr/apr/network_io/os2/
H A Dsendrecv.c109 const struct iovec *vec,
113 struct iovec *tmpvec;
122 tmpvec = alloca(sizeof(struct iovec) * nv_tosend);
123 memcpy(tmpvec, vec, sizeof(struct iovec) * nv_tosend);
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/saslauthd/
H A Dutils.h87 extern int retry_writev(int, struct iovec *, int);
/macosx-10.10.1/Libc-1044.1.2/include/
H A Dutil.h106 struct iovec;
107 char *ttymsg(struct iovec *, int, const char *, int);
/macosx-10.10.1/Libc-1044.1.2/stdio/FreeBSD/
H A Dperror.c53 struct iovec *v;
54 struct iovec iov[4];
/macosx-10.10.1/remote_cmds-47/talkd.tproj/
H A Dannounce.c111 struct iovec iovec; local
168 iovec.iov_base = big_buf;
169 iovec.iov_len = bptr - big_buf;
175 if (ttymsg(&iovec, 1, tty, RING_WAIT - 5) != NULL)
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dreadv.c39 readv(int d, const struct iovec *iov, int iovcnt)
H A Drecvmsg.c45 struct iovec *iov = msg->msg_iov;
H A Dwritev.c39 writev(int d, const struct iovec *iov, int iovcnt)
/macosx-10.10.1/apr-32/apr/apr/include/arch/os2/
H A Dapr_arch_os2calls.h37 extern int (*apr_os2_writev)(int, struct iovec *, int);
/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dfdmover.cpp57 : iovec(data, length)
61 msg_iov = &iovec;
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dfdmover.cpp57 : iovec(data, length)
61 msg_iov = &iovec;
/macosx-10.10.1/shell_cmds-179/echo/
H A Decho.c76 struct iovec *iov, *vp; /* Elements to write, current element. */
91 if ((vp = iov = malloc((veclen + 1) * sizeof(struct iovec))) == NULL)
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Duio.h87 * UIO_READ - data moves into iovec(s) associated with uio_t
88 * UIO_WRITE - data moves out of iovec(s) associated with uio_t
163 * uio_addiov - add an iovec to the given uio_t. You may call this up to
170 * uio_getiov - get iovec data associated with the given uio_t. Use
171 * a_index to iterate over each iovec (0 to (uio_iovcnt(uio_t) - 1)).
183 * This call adjusts decrements the current iovec length and residual IO,
184 * and increments the current iovec base address and offset value.
230 * uio_curriovbase - return the base address of the current iovec associated
236 * uio_curriovlen - return the length value of the current iovec associated
256 ssize_t readv(int, const struct iovec *, in
[all...]
/macosx-10.10.1/apr-32/apr/apr/network_io/win32/
H A Dsendrecv.c98 const struct iovec *vec,
215 struct iovec *iovec, int numvec,
219 *off = iovec[0].iov_base;
220 *len = iovec[0].iov_len;
225 *len += iovec[i].iov_len;
236 memcpy(buf, iovec[i].iov_base, iovec[i].iov_len);
237 buf += iovec[i].iov_len;
214 collapse_iovec(char **off, apr_size_t *len, struct iovec *iovec, int numvec, char *buf, apr_size_t buflen) argument
/macosx-10.10.1/bind9-45.101/bind9/contrib/nslint-2.1a3/lbl/
H A Dos-sunos4.h134 struct iovec;
136 int readv(int, struct iovec *, int);
190 int writev(int, struct iovec *, int);

Completed in 207 milliseconds

1234567