Lines Matching defs:tp
84 rcons_output(struct tty *tp)
90 if (tp->t_state & (TS_TIMEOUT | TS_BUSY | TS_TTSTOP)) {
94 tp->t_state |= TS_BUSY;
96 n = q_to_b(&tp->t_outq, buf, sizeof(buf));
100 tp->t_state &= ~TS_BUSY;
102 if (ttypull(tp)) {
103 tp->t_state |= TS_TIMEOUT;
104 callout_schedule(&tp->t_rstrt_ch, 1);
180 rcons_ttyinit(struct tty *tp)
190 ws = &tp->t_winsize;
197 tp->t_oproc = rcons_output;
198 /*tp->t_stop = (void (*)()) nullop;*/