Lines Matching defs:msgsz
72 int msgsz;
85 msgsz = (int)TCONNREQSZ;
98 while (!(bp = allocb_cred(msgsz + sndcall->addr.len + sndcall->opt.len,
100 if (strwaitbuf(msgsz + sndcall->addr.len + sndcall->opt.len,
112 bcopy(sndcall->addr.buf, (bp->b_wptr+msgsz), sndcall->addr.len);
113 creq->DEST_offset = (t_scalar_t)msgsz;
114 msgsz += sndcall->addr.len;
119 bcopy(sndcall->opt.buf, (bp->b_wptr+msgsz), sndcall->opt.len);
120 creq->OPT_offset = (t_scalar_t)msgsz;
121 msgsz += sndcall->opt.len;
126 bp->b_wptr += msgsz;
206 msgsz = (int)MBLKL(bp);
207 len = MIN(msgsz, rcvcall->udata.maxlen);