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

  /xsrc/external/mit/xterm/dist/
resize.c 353 struct termio tio; local
355 struct termios tio; local
477 tio = tioorig;
478 UIntClr(tio.c_iflag, (ICRNL | IUCLC));
479 UIntClr(tio.c_lflag, (ICANON | ECHO));
480 tio.c_cflag |= CS8;
481 tio.c_cc[VMIN] = 6;
482 tio.c_cc[VTIME] = 1;
485 tio = tioorig;
486 UIntClr(tio.c_iflag, ICRNL)
    [all...]
main.c 2979 TERMIO_STRUCT tio; local
2981 if (ttyGetAttr(screen->respond, &tio) == -1)
2984 tio.c_cflag &= ~(CLOCAL);
2986 if (ttySetAttr(screen->respond, &tio) == -1)
3933 TERMIO_STRUCT tio; local
4070 tio = d_tio;
4100 rc = ttyGetAttr(ttyfd, &tio);
4102 tio = d_tio;
4128 initial_erase = tio.c_cc[VERASE];
4530 eg. by lineedit in the shell, or emacs, etc. then tio
    [all...]
configure 16629 struct termios tio;
16631 (void)tio;
16649 else if (tcgetattr(pty, &tio) < 0)
16651 else if (tcsetattr(pty, TCSAFLUSH, &tio) < 0)
16675 else if (tcgetattr(tty, &tio) < 0)
16677 else if (tcsetattr(tty, TCSAFLUSH, &tio) < 0)
16744 struct termios tio;
16746 (void)tio;
16764 else if (tcgetattr(pty, &tio) < 0)
16766 else if (tcsetattr(pty, TCSAFLUSH, &tio) < 0
    [all...]
  /xsrc/external/mit/luit/dist/
sys.c 216 struct termios tio; local
219 rc = tcgetattr(sfd, &tio);
223 rc = tcsetattr(dfd, TCSAFLUSH, &tio);
251 struct termios tio; local
256 rc = tcgetattr(0, &tio);
259 tio.c_lflag &= (unsigned) ~(ECHO | ICANON | ISIG);
260 tio.c_iflag &= (unsigned) ~(ICRNL | IXOFF | IXON | ISTRIP);
262 tio.c_oflag &= (unsigned) ~ONLCR;
265 tio.c_oflag &= (unsigned) ~OCRNL;
268 tio.c_oflag &= (unsigned) ~ONOCR
    [all...]

Completed in 23 milliseconds