Home
last modified time | relevance | path

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

/xnu-8796.121.2/bsd/kern/
H A Dtty_subr.c157 c |= TTY_QUOTE; in getc()
161 c |= TTY_QUOTE; in getc()
236 if (flag & TTY_QUOTE) { in ndqb()
237 while (cc-- > 0 && !(clp->c_cs[i++] & (flag & ~TTY_QUOTE) || in ndqb()
324 if (c & TTY_QUOTE) { in putc()
331 *q = (c & TTY_QUOTE) ? 1 : 0; in putc()
481 *c |= TTY_QUOTE; in nextc()
485 *c |= TTY_QUOTE; in nextc()
516 *c |= TTY_QUOTE; in firstc()
520 *c |= TTY_QUOTE; in firstc()
[all …]
H A Dtty.c496 (void)putc(0377 | TTY_QUOTE, &tp->t_rawq); in ttyinput()
497 (void)putc(0 | TTY_QUOTE, &tp->t_rawq); in ttyinput()
498 (void)putc(c | TTY_QUOTE, &tp->t_rawq); in ttyinput()
514 SET(c, TTY_QUOTE); in ttyinput()
744 (void)putc(0377 | TTY_QUOTE, &tp->t_rawq); in ttyinput()
2589 if (c == ('\t' | TTY_QUOTE) || c == ('\n' | TTY_QUOTE)) { in ttyrub()
/xnu-8796.121.2/bsd/sys/
H A Dtty.h255 #define TTY_QUOTE 0x00000100 /* Character quoted */ macro