Home | History | Annotate | Download | only in common

Lines Matching defs:tc

174 		struct tchars *tc = (struct tchars *)data;
176 tc->t_intrc = tty_getctrlchar(tp, VINTR);
177 tc->t_quitc = tty_getctrlchar(tp, VQUIT);
178 tc->t_startc = tty_getctrlchar(tp, VSTART);
179 tc->t_stopc = tty_getctrlchar(tp, VSTOP);
180 tc->t_eofc = tty_getctrlchar(tp, VEOF);
181 tc->t_brkc = tty_getctrlchar(tp, VEOL);
185 struct tchars *tc = (struct tchars *)data;
187 tty_setctrlchar(tp, VINTR, tc->t_intrc);
188 tty_setctrlchar(tp, VQUIT, tc->t_quitc);
189 tty_setctrlchar(tp, VSTART, tc->t_startc);
190 tty_setctrlchar(tp, VSTOP, tc->t_stopc);
191 tty_setctrlchar(tp, VEOF, tc->t_eofc);
192 tty_setctrlchar(tp, VEOL, tc->t_brkc);
193 if (tc->t_brkc == (char)-1)