Searched refs:_tty (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/ucblib/libcurses/
H A Dtstp.c43 tty = _tty;
53 _tty = tty;
54 (void) stty(_tty_ch, &_tty);
H A Dcr_tty.c71 if (gtty(_tty_ch, &_tty) < 0)
74 if (stty(_tty_ch, &_tty) < 0)
75 _tty.sg_flags = _res_flg;
76 ospeed = _tty.sg_ospeed;
77 _res_flg = _tty.sg_flags;
78 UPPERCASE = (_tty.sg_flags & LCASE) != 0;
79 GT = ((_tty.sg_flags & XTABS) == 0);
80 NONL = ((_tty.sg_flags & CRMOD) == 0);
81 _tty.sg_flags &= ~XTABS;
82 (void) stty(_tty_ch, &_tty);
[all...]
H A Dcurses.ext34 extern SGTTY _tty;
H A Dcurses.c49 SGTTY _tty; /* tty modes */ variable
/illumos-gate/usr/src/ucbhead/
H A Dcurses.h99 extern SGTTY _tty;
161 #define raw() (_tty.sg_flags |= RAW, _pfast = _rawmode = TRUE, \
162 (void) stty(_tty_ch, &_tty))
163 #define noraw() (_tty.sg_flags &= ~RAW, _rawmode = FALSE, \
164 _pfast = !(_tty.sg_flags & CRMOD), (void) stty(_tty_ch, &_tty))
165 #define cbreak() (_tty.sg_flags |= CBREAK, _rawmode = TRUE, \
166 (void) stty(_tty_ch, &_tty))
167 #define nocbreak() (_tty.sg_flags &= ~CBREAK, _rawmode = FALSE, \
168 (void) stty(_tty_ch, &_tty))
[all...]

Completed in 58 milliseconds