Lines Matching refs:b_cont

287 			cqp->cq_addr = (caddr_t)*(intptr_t *)mp->b_cont->b_rptr;  in ttcompatwput()
309 freemsg(mp->b_cont); in ttcompatwput()
310 mp->b_cont = NULL; in ttcompatwput()
344 iocbp->ioc_count = MBLKL(mp->b_cont); in ttcompatwput()
433 ASSERT(mp->b_cont != NULL); in ttcompat_do_ioctl()
434 tp->t_arg = *(intptr_t *)mp->b_cont->b_rptr; in ttcompat_do_ioctl()
437 freemsg(mp->b_cont); in ttcompat_do_ioctl()
438 mp->b_cont = NULL; in ttcompat_do_ioctl()
459 tp->t_new_sgttyb = *((struct sgttyb *)mp->b_cont->b_rptr); in ttcompat_do_ioctl()
468 tp->t_new_tchars = *((struct tchars *)mp->b_cont->b_rptr); in ttcompat_do_ioctl()
477 tp->t_new_ltchars = *((struct ltchars *)mp->b_cont->b_rptr); in ttcompat_do_ioctl()
488 tp->t_new_lflags = *(int *)mp->b_cont->b_rptr; in ttcompat_do_ioctl()
519 if (mp->b_cont != NULL) in ttcompat_do_ioctl()
520 freemsg(mp->b_cont); in ttcompat_do_ioctl()
521 mp->b_cont = datap; /* attach the data */ in ttcompat_do_ioctl()
538 if (mp->b_cont != NULL) in ttcompat_do_ioctl()
539 freemsg(mp->b_cont); in ttcompat_do_ioctl()
540 mp->b_cont = datap; /* attach the data */ in ttcompat_do_ioctl()
556 flags = *(int *)mp->b_cont->b_rptr; in ttcompat_do_ioctl()
574 *(int *)mp->b_cont->b_rptr = flags; /* fiddle the arg */ in ttcompat_do_ioctl()
590 if (mp->b_cont != NULL) in ttcompat_do_ioctl()
591 freemsg(mp->b_cont); in ttcompat_do_ioctl()
592 mp->b_cont = datap; /* attach the data */ in ttcompat_do_ioctl()
605 if (mp->b_cont != NULL) in ttcompat_do_ioctl()
606 freemsg(mp->b_cont); in ttcompat_do_ioctl()
607 mp->b_cont = datap; /* attach the data */ in ttcompat_do_ioctl()
626 if (iocp->ioc_error == 0 && (*mp->b_cont->b_rptr != 0)) in ttcompat_do_ioctl()
719 datap = mp->b_cont; /* mblk containing data going up */ in ttcompat_ioctl_ack()