Searched refs:tiov (Results 1 - 6 of 6) sorted by relevance

/osnet-11/usr/src/lib/libnsl/nsl/
H A Dxti_wrappers.c190 _xti_rcvv(int fd, struct t_iovec *tiov, unsigned int tiovcount, int *flags) argument
192 return (_tx_rcvv(fd, tiov, tiovcount, flags, TX_XTI_XNS5_API));
196 _xti_rcvvudata(int fd, struct t_unitdata *unitdata, struct t_iovec *tiov, argument
199 return (_tx_rcvvudata(fd, unitdata, tiov, tiovcount, flags,
241 _xti_sndv(int fd, const struct t_iovec *tiov, unsigned int tiovcount, int flags) argument
243 return (_tx_sndv(fd, tiov, tiovcount, flags, TX_XTI_XNS5_API));
247 _xti_sndvudata(int fd, struct t_unitdata *unitdata, struct t_iovec *tiov, argument
250 return (_tx_sndvudata(fd, unitdata, tiov, tiovcount, TX_XTI_XNS5_API));
H A Dt_sndv.c48 _tx_sndv(int fd, const struct t_iovec *tiov, unsigned int tiovcount, argument
108 * nbytes is the sum of the bytecounts in the tiov vector
112 nbytes = _t_bytecount_upto_intmax(tiov, tiovcount);
181 _t_gather(dataptr, tiov, tiovcount);
239 _t_copy_tiov_to_iov(tiov, tiovcount, iov,
H A Dt_sndvudata.c49 _tx_sndvudata(int fd, const struct t_unitdata *unitdata, struct t_iovec *tiov, argument
85 nbytes = _t_bytecount_upto_intmax(tiov, tiovcount);
166 _t_gather(dataptr, tiov, tiovcount);
H A D_utility.c1496 _t_bytecount_upto_intmax(const struct t_iovec *tiov, unsigned int tiovcount) argument
1503 if (tiov[i].iov_len >= INT_MAX) {
1507 nbytes += tiov[i].iov_len;
1524 _t_gather(char *dataptr, const struct t_iovec *tiov, unsigned int tiovcount) argument
1534 nbytes_remaining = _t_bytecount_upto_intmax(tiov, tiovcount);
1536 if (tiov[i].iov_len <= nbytes_remaining)
1537 cur_count = (int)tiov[i].iov_len;
1540 (void) memcpy(curptr, tiov[i].iov_base, cur_count);
1551 _t_scatter(struct strbuf *pdatabuf, struct t_iovec *tiov, int tiovcount) argument
1562 assert(pdatabuf->len <= _t_bytecount_upto_intmax(tiov, tiovcoun
1612 _t_copy_tiov_to_iov(const struct t_iovec *tiov, int tiovcount, struct iovec *iov, int *iovcountp) argument
[all...]
H A Dt_rcvv.c50 _tx_rcvv(int fd, struct t_iovec *tiov, unsigned int tiovcount, int *flags, argument
171 nbytes = _t_bytecount_upto_intmax(tiov, tiovcount);
264 _t_scatter(&databuf, tiov, tiovcount);
391 _t_scatter(&databuf, tiov, tiovcount);
H A Dt_rcvvudata.c54 struct t_iovec *tiov,
116 nbytes = _t_bytecount_upto_intmax(tiov, tiovcount);
209 _t_scatter(&databuf, tiov, tiovcount);
252 _t_scatter(&databuf, tiov, tiovcount);
51 _tx_rcvvudata( int fd, struct t_unitdata *unitdata, struct t_iovec *tiov, unsigned int tiovcount, int *flags, int api_semantics ) argument

Completed in 31 milliseconds