Lines Matching defs:tcr
2643 struct T_conn_req *tcr;
2656 mp = allocb_cred(sizeof (*tcr) + addr->len, cr, NOPID);
2682 tcr = (struct T_conn_req *)mp->b_rptr;
2683 bzero(tcr, sizeof (*tcr));
2684 tcr->PRIM_type = T_CONN_REQ;
2685 tcr->DEST_length = addr->len;
2686 tcr->DEST_offset = sizeof (struct T_conn_req);
2687 mp->b_wptr = mp->b_rptr + sizeof (*tcr);
2689 bcopy(addr->buf, mp->b_wptr, tcr->DEST_length);
2690 mp->b_wptr += tcr->DEST_length;