Home
last modified time | relevance | path

Searched refs:TF_BYPASS (Results 1 – 4 of 4) sorted by relevance

/f-stack/freebsd/kern/
H A Dtty_ttydisc.c592 tp->t_flags |= TF_BYPASS; in ttydisc_optimize()
594 tp->t_flags &= ~TF_BYPASS; in ttydisc_optimize()
600 tp->t_flags |= TF_BYPASS; in ttydisc_optimize()
602 tp->t_flags &= ~TF_BYPASS; in ttydisc_optimize()
868 if (tp->t_flags & TF_BYPASS) in ttydisc_rint()
1120 MPASS(tp->t_flags & TF_BYPASS); in ttydisc_rint_bypass()
H A Dtty.c2282 { TF_BYPASS, 'l' },
/f-stack/freebsd/sys/
H A Dttydisc.h55 #define ttydisc_can_bypass(tp) ((tp)->t_flags & TF_BYPASS)
H A Dtty.h86 #define TF_BYPASS 0x04000 /* Optimized input path. */ macro