Home
last modified time | relevance | path

Searched refs:ttystate (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/format/
H A Dmisc.c52 struct ttystate ttystate; /* tty info */ variable
235 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 …]
H A Dmisc.h109 struct ttystate { struct
110 struct termios ttystate; /* buffer for ioctls */ argument