HomeSort by: relevance | last modified time | path
    Searched refs:TTY_QUOTE (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/kern/
tty_subr.c 43 * There are two ways the TTY_QUOTE bit can be stored. If QBITS is
48 * If TTY_QUOTE functionality isn't required by a line discipline,
115 c |= TTY_QUOTE;
118 c |= TTY_QUOTE;
188 if (flag & TTY_QUOTE) {
189 while (cc-- > 0 && !(clp->c_cs[i++] & (flag & ~TTY_QUOTE) ||
272 if (c & TTY_QUOTE)
278 *q = (c & TTY_QUOTE) ? 1 : 0;
411 *c |= TTY_QUOTE;
414 *c |= TTY_QUOTE;
    [all...]
tty.c 627 parmrk: (void)putc(0377 | TTY_QUOTE, &tp->t_rawq);
628 (void)putc(0 | TTY_QUOTE, &tp->t_rawq);
629 (void)putc(c | TTY_QUOTE, &tp->t_rawq);
637 (void)putc(0377 | TTY_QUOTE, &tp->t_rawq);
638 (void)putc(0377 | TTY_QUOTE, &tp->t_rawq);
654 SET(c, TTY_QUOTE);
2451 if (c == ('\t' | TTY_QUOTE) || c == ('\n' | TTY_QUOTE))
  /src/sys/sys/
tty.h 79 * if c_cq is NULL, the ring buffer has no TTY_QUOTE functionality
235 #define TTY_QUOTE 0x00000100 /* Character quoted */

Completed in 13 milliseconds