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

/illumos-gate/usr/src/lib/libnsl/nsl/
H A Dxti_wrappers.c194 _xti_rcvv(int fd, struct t_iovec *tiov, unsigned int tiovcount, int *flags) argument
196 return (_tx_rcvv(fd, tiov, tiovcount, flags, TX_XTI_XNS5_API));
201 unsigned int tiovcount, int *flags)
203 return (_tx_rcvvudata(fd, unitdata, tiov, tiovcount, flags,
245 _xti_sndv(int fd, const struct t_iovec *tiov, unsigned int tiovcount, int flags) argument
247 return (_tx_sndv(fd, tiov, tiovcount, flags, TX_XTI_XNS5_API));
252 unsigned int tiovcount)
254 return (_tx_sndvudata(fd, unitdata, tiov, tiovcount, TX_XTI_XNS5_API));
200 _xti_rcvvudata(int fd, struct t_unitdata *unitdata, struct t_iovec *tiov, unsigned int tiovcount, int *flags) argument
251 _xti_sndvudata(int fd, struct t_unitdata *unitdata, struct t_iovec *tiov, unsigned int tiovcount) argument
H A Dt_sndv.c48 _tx_sndv(int fd, const struct t_iovec *tiov, unsigned int tiovcount, argument
77 if (tiovcount == 0 || tiovcount > T_IOV_MAX) {
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.c51 unsigned int tiovcount, int api_semantics)
74 if (tiovcount == 0 || tiovcount > T_IOV_MAX) {
86 nbytes = _t_bytecount_upto_intmax(tiov, tiovcount);
166 _t_gather(dataptr, tiov, tiovcount);
50 _tx_sndvudata(int fd, const struct t_unitdata *unitdata, struct t_iovec *tiov, unsigned int tiovcount, int api_semantics) argument
H A Dt_rcvv.c50 _tx_rcvv(int fd, struct t_iovec *tiov, unsigned int tiovcount, int *flags, argument
75 if (tiovcount == 0 || tiovcount > T_IOV_MAX) {
171 nbytes = _t_bytecount_upto_intmax(tiov, tiovcount);
264 _t_scatter(&databuf, tiov, tiovcount);
391 _t_scatter(&databuf, tiov, tiovcount);
H A Dt_rcvvudata.c55 unsigned int tiovcount,
73 if (tiovcount == 0 || tiovcount > T_IOV_MAX) {
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
H A D_utility.c1491 _t_bytecount_upto_intmax(const struct t_iovec *tiov, unsigned int tiovcount) argument
1497 for (i = 0; i < tiovcount && nbytes < INT_MAX; i++) {
1519 _t_gather(char *dataptr, const struct t_iovec *tiov, unsigned int tiovcount) argument
1529 nbytes_remaining = _t_bytecount_upto_intmax(tiov, tiovcount);
1530 for (i = 0; i < tiovcount && nbytes_remaining != 0; i++) {
1546 _t_scatter(struct strbuf *pdatabuf, struct t_iovec *tiov, int tiovcount) argument
1557 assert(pdatabuf->len <= _t_bytecount_upto_intmax(tiov, tiovcount));
1560 for (i = 0; i < tiovcount && nbytes_remaining != 0; i++) {
1607 _t_copy_tiov_to_iov(const struct t_iovec *tiov, int tiovcount, argument
1613 nbytes_remaining = _t_bytecount_upto_intmax(tiov, tiovcount);
[all...]

Completed in 75 milliseconds