Home
last modified time | relevance | path

Searched refs:_CTRL (Results 1 – 13 of 13) sorted by relevance

/titanic_41/usr/src/lib/libbc/inc/include/sys/
H A Dtermios.h74 #define _CTRL(c) ('c'&037) macro
81 #define CINTR _CTRL(c)
84 #define CKILL _CTRL(u)
85 #define CEOF _CTRL(d)
91 #define CSTART _CTRL(q)
92 #define CSTOP _CTRL(s)
93 #define CSUSP _CTRL(z)
94 #define CDSUSP _CTRL(y)
95 #define CRPRNT _CTRL(r)
96 #define CFLUSH _CTRL(o)
[all …]
/titanic_41/usr/src/lib/libbc/inc/include/
H A Dtermios.h74 #define _CTRL(c) ('c'&037) macro
81 #define CINTR _CTRL(c)
84 #define CKILL _CTRL(u)
85 #define CEOF _CTRL(d)
91 #define CSTART _CTRL(q)
92 #define CSTOP _CTRL(s)
93 #define CSUSP _CTRL(z)
94 #define CDSUSP _CTRL(y)
95 #define CRPRNT _CTRL(r)
96 #define CFLUSH _CTRL(o)
[all …]
/titanic_41/usr/src/cmd/tip/
H A Dcmdtab.c31 {_CTRL('d'), NORM, "exit from tip", finish },
33 {_CTRL('y'), NORM, "suspend tip (local only)", suspend },
34 {_CTRL('z'), NORM, "suspend tip (local+remote)", suspend },
H A Dtip.h42 #define _CTRL(c) (c&037) macro
H A Dcmds.c869 (void) kill(c == _CTRL('y') ? getpid() : 0, SIGTSTP); in suspend()
/titanic_41/usr/src/lib/libcurses/screen/
H A Dwinsnstr.c77 len = (sp[x] < ' '|| sp[x] == _CTRL('?')) ? 2 : 1; in winsnstr()
143 if (*sp < ' ' || *sp == _CTRL('?')) { in winsnstr()
148 win->_curx += (*sp < ' ' || *sp == _CTRL('?')) ? 2 : 1; in winsnstr()
H A Dnocbreak.c54 PROGTTYS.c_cc[VEOF] = _CTRL('D'); in nocbreak()
H A Dnoraw.c53 PROGTTYS.c_cc[VEOF] = _CTRL('D'); in noraw()
H A Dwinsch.c109 if (c < ' ' || c == _CTRL('?')) { in winsch()
H A Dwbkgd.c78 if ((nbkgdc < ' ' || nbkgdc == _CTRL('?')) || in wbkgd()
H A Dwaddnstr.c117 if ((ch >= ' ') && (ch != _CTRL('?')) && (curx < maxx_1)) { in waddnstr()
H A Dwaddch.c97 if (rawc < ' ' || rawc == _CTRL('?')) { in waddch()
H A Dcurshdr.h207 #define _CTRL(c) (c | 0100) macro