Lines Matching refs:wbuf
102 struct iovec wbuf[NPACKET_R]; in dvrecv() local
114 bzero(wbuf, sizeof(wbuf)); in dvrecv()
216 wbuf[vec].iov_base = pad; in dvrecv()
217 wbuf[vec++].iov_len = npad; in dvrecv()
219 writev(fd, wbuf, vec); in dvrecv()
231 wbuf[vec].iov_base = (char *) dv; in dvrecv()
232 wbuf[vec++].iov_len = DSIZE; in dvrecv()
234 writev(fd, wbuf, vec); in dvrecv()
243 writev(fd, wbuf, vec); in dvrecv()
260 struct iovec wbuf[TNBUF*2 + NEMPTY]; in dvsend() local
272 bzero(wbuf, sizeof(wbuf)); in dvsend()
381 wbuf[vec].iov_base = (char *)hdr[nhdr]; in dvsend()
382 wbuf[vec++].iov_len = sizeof(hdr[0]); in dvsend()
387 wbuf[vec].iov_base = (char *)hdr[nhdr]; in dvsend()
388 wbuf[vec++].iov_len = sizeof(hdr[0]); in dvsend()
389 wbuf[vec].iov_base = (char *)dv; in dvsend()
390 wbuf[vec++].iov_len = DSIZE; in dvsend()
398 len = writev(d, wbuf, vec); in dvsend()