Lines Matching refs:datap
312 mblk_t *datap; in ttycommon_ioctl() local
314 if ((datap = allocb(sizeof (struct termios), in ttycommon_ioctl()
319 cb = (struct termios *)datap->b_wptr; in ttycommon_ioctl()
326 datap->b_wptr += sizeof (struct termios); in ttycommon_ioctl()
330 mp->b_cont = datap; in ttycommon_ioctl()
336 mblk_t *datap; in ttycommon_ioctl() local
338 if ((datap = allocb(sizeof (struct termio), BPRI_HI)) == NULL) { in ttycommon_ioctl()
343 cb = (struct termio *)datap->b_wptr; in ttycommon_ioctl()
350 datap->b_wptr += sizeof (struct termio); in ttycommon_ioctl()
354 mp->b_cont = datap; in ttycommon_ioctl()
362 mblk_t *datap; in ttycommon_ioctl() local
364 if ((datap = allocb(sizeof (int), BPRI_HI)) == NULL) { in ttycommon_ioctl()
369 *(int *)datap->b_wptr = 1; in ttycommon_ioctl()
371 *(int *)datap->b_wptr = 0; in ttycommon_ioctl()
372 datap->b_wptr += sizeof (int); in ttycommon_ioctl()
376 mp->b_cont = datap; in ttycommon_ioctl()
381 mblk_t *datap; in ttycommon_ioctl() local
383 if ((datap = allocb(sizeof (struct winsize), in ttycommon_ioctl()
391 *(struct winsize *)datap->b_wptr = tc->t_size; in ttycommon_ioctl()
392 datap->b_wptr += sizeof (struct winsize); in ttycommon_ioctl()
396 mp->b_cont = datap; in ttycommon_ioctl()