Searched refs:ttystate (Results 1 – 2 of 2) sorted by relevance
52 struct ttystate ttystate; /* tty info */ variable235 fix_term = ttystate.ttyflags; in onsusp()319 if (ttystate.ttyflags & TTY_CBREAK_ON) { in cleanup()322 if (ttystate.ttyflags & TTY_ECHO_OFF) { in cleanup()420 if (ttystate.ttyflags == 0) { in echo_off()421 if ((ttystate.ttyfile = open("/dev/tty", in echo_off()430 if (tcgetattr(ttystate.ttyfile, &ttystate.ttystate) < 0) { in echo_off()434 ttystate.ttystate.c_lflag &= ~ECHO; in echo_off()435 if (tcsetattr(ttystate.ttyfile, TCSANOW, &ttystate.ttystate) < 0) { in echo_off()444 ttystate.ttyflags |= TTY_ECHO_OFF; in echo_off()[all …]
109 struct ttystate { struct110 struct termios ttystate; /* buffer for ioctls */ argument