Lines Matching refs:t_curstate

209 	tp->t_curstate.t_flags = 0;  in ttcompatopen()
210 tp->t_curstate.t_ispeed = B0; in ttcompatopen()
211 tp->t_curstate.t_ospeed = B0; in ttcompatopen()
212 tp->t_curstate.t_erase = '\0'; in ttcompatopen()
213 tp->t_curstate.t_kill = '\0'; in ttcompatopen()
214 tp->t_curstate.t_intrc = '\0'; in ttcompatopen()
215 tp->t_curstate.t_quitc = '\0'; in ttcompatopen()
216 tp->t_curstate.t_startc = '\0'; in ttcompatopen()
217 tp->t_curstate.t_stopc = '\0'; in ttcompatopen()
218 tp->t_curstate.t_eofc = '\0'; in ttcompatopen()
219 tp->t_curstate.t_brkc = '\0'; in ttcompatopen()
220 tp->t_curstate.t_suspc = '\0'; in ttcompatopen()
221 tp->t_curstate.t_dsuspc = '\0'; in ttcompatopen()
222 tp->t_curstate.t_rprntc = '\0'; in ttcompatopen()
223 tp->t_curstate.t_flushc = '\0'; in ttcompatopen()
224 tp->t_curstate.t_werasc = '\0'; in ttcompatopen()
225 tp->t_curstate.t_lnextc = '\0'; in ttcompatopen()
226 tp->t_curstate.t_xflags = 0; in ttcompatopen()
824 to_compat((struct termios *)datap->b_rptr, &tp->t_curstate); in ttcompat_ioctl_ack()
837 cb->sg_ispeed = tp->t_curstate.t_ispeed > B38400 ? B38400 : in ttcompat_ioctl_ack()
838 tp->t_curstate.t_ispeed; in ttcompat_ioctl_ack()
839 cb->sg_ospeed = tp->t_curstate.t_ospeed > B38400 ? B38400 : in ttcompat_ioctl_ack()
840 tp->t_curstate.t_ospeed; in ttcompat_ioctl_ack()
841 cb->sg_erase = tp->t_curstate.t_erase; in ttcompat_ioctl_ack()
842 cb->sg_kill = tp->t_curstate.t_kill; in ttcompat_ioctl_ack()
843 cb->sg_flags = tp->t_curstate.t_flags; in ttcompat_ioctl_ack()
857 to_compat((struct termios *)datap->b_rptr, &tp->t_curstate); in ttcompat_ioctl_ack()
860 bcopy(&tp->t_curstate.t_intrc, datap->b_wptr, in ttcompat_ioctl_ack()
866 to_compat((struct termios *)datap->b_rptr, &tp->t_curstate); in ttcompat_ioctl_ack()
869 bcopy(&tp->t_curstate.t_suspc, datap->b_wptr, in ttcompat_ioctl_ack()
875 to_compat((struct termios *)datap->b_rptr, &tp->t_curstate); in ttcompat_ioctl_ack()
879 ((unsigned)tp->t_curstate.t_flags) >> 16; in ttcompat_ioctl_ack()
889 to_compat((struct termios *)datap->b_rptr, &tp->t_curstate); in ttcompat_ioctl_ack()
890 tp->t_curstate.t_erase = tp->t_new_sgttyb.sg_erase; in ttcompat_ioctl_ack()
891 tp->t_curstate.t_kill = tp->t_new_sgttyb.sg_kill; in ttcompat_ioctl_ack()
908 tp->t_curstate.t_ispeed <= B38400) in ttcompat_ioctl_ack()
909 tp->t_curstate.t_ispeed = tp->t_new_sgttyb.sg_ispeed; in ttcompat_ioctl_ack()
911 tp->t_curstate.t_ospeed <= B38400) in ttcompat_ioctl_ack()
912 tp->t_curstate.t_ospeed = tp->t_new_sgttyb.sg_ospeed; in ttcompat_ioctl_ack()
913 tp->t_curstate.t_flags = in ttcompat_ioctl_ack()
914 (tp->t_curstate.t_flags & 0xffff0000) | in ttcompat_ioctl_ack()
920 from_compat(&tp->t_curstate, (struct termios *)datap->b_rptr); in ttcompat_ioctl_ack()
933 to_compat((struct termios *)datap->b_rptr, &tp->t_curstate); in ttcompat_ioctl_ack()
935 &tp->t_curstate.t_intrc, sizeof (struct tchars)); in ttcompat_ioctl_ack()
940 from_compat(&tp->t_curstate, (struct termios *)datap->b_rptr); in ttcompat_ioctl_ack()
953 to_compat((struct termios *)datap->b_rptr, &tp->t_curstate); in ttcompat_ioctl_ack()
955 &tp->t_curstate.t_suspc, sizeof (struct ltchars)); in ttcompat_ioctl_ack()
960 from_compat(&tp->t_curstate, (struct termios *)datap->b_rptr); in ttcompat_ioctl_ack()
973 to_compat((struct termios *)datap->b_rptr, &tp->t_curstate); in ttcompat_ioctl_ack()
974 tp->t_curstate.t_flags |= (tp->t_new_lflags << 16); in ttcompat_ioctl_ack()
979 from_compat(&tp->t_curstate, (struct termios *)datap->b_rptr); in ttcompat_ioctl_ack()
992 to_compat((struct termios *)datap->b_rptr, &tp->t_curstate); in ttcompat_ioctl_ack()
993 tp->t_curstate.t_flags &= ~(tp->t_new_lflags << 16); in ttcompat_ioctl_ack()
998 from_compat(&tp->t_curstate, (struct termios *)datap->b_rptr); in ttcompat_ioctl_ack()
1011 to_compat((struct termios *)datap->b_rptr, &tp->t_curstate); in ttcompat_ioctl_ack()
1012 tp->t_curstate.t_flags &= 0xffff; in ttcompat_ioctl_ack()
1013 tp->t_curstate.t_flags |= (tp->t_new_lflags << 16); in ttcompat_ioctl_ack()
1018 from_compat(&tp->t_curstate, (struct termios *)datap->b_rptr); in ttcompat_ioctl_ack()