Home
last modified time | relevance | path

Searched refs:TTY_QUOTE (Results 1 – 3 of 3) sorted by relevance

/dragonfly/sys/kern/
H A Dtty_subr.c182 cl->c_data[i] = (short)c & (TTY_QUOTE | TTY_CHARMASK); in clist_putc()
H A Dtty.c461 clist_putc(0377 | TTY_QUOTE, &tp->t_rawq); in ttyinput()
462 clist_putc(0 | TTY_QUOTE, &tp->t_rawq); in ttyinput()
463 clist_putc(c | TTY_QUOTE, &tp->t_rawq); in ttyinput()
477 SET(c, TTY_QUOTE); in ttyinput()
682 clist_putc(0377 | TTY_QUOTE, &tp->t_rawq); in ttyinput()
2204 if (c == ('\t' | TTY_QUOTE) || c == ('\n' | TTY_QUOTE)) in ttyrub()
/dragonfly/sys/sys/
H A Dtty.h208 #define TTY_QUOTE 0x0100 /* Character quoted */ macro