Searched refs:_CTRL (Results 1 – 13 of 13) sorted by relevance
/titanic_41/usr/src/lib/libbc/inc/include/sys/ |
H A D | termios.h | 74 #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 D | termios.h | 74 #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 D | cmdtab.c | 31 {_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 D | tip.h | 42 #define _CTRL(c) (c&037) macro
|
H A D | cmds.c | 869 (void) kill(c == _CTRL('y') ? getpid() : 0, SIGTSTP); in suspend()
|
/titanic_41/usr/src/lib/libcurses/screen/ |
H A D | winsnstr.c | 77 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 D | nocbreak.c | 54 PROGTTYS.c_cc[VEOF] = _CTRL('D'); in nocbreak()
|
H A D | noraw.c | 53 PROGTTYS.c_cc[VEOF] = _CTRL('D'); in noraw()
|
H A D | winsch.c | 109 if (c < ' ' || c == _CTRL('?')) { in winsch()
|
H A D | wbkgd.c | 78 if ((nbkgdc < ' ' || nbkgdc == _CTRL('?')) || in wbkgd()
|
H A D | waddnstr.c | 117 if ((ch >= ' ') && (ch != _CTRL('?')) && (curx < maxx_1)) { in waddnstr()
|
H A D | waddch.c | 97 if (rawc < ' ' || rawc == _CTRL('?')) { in waddch()
|
H A D | curshdr.h | 207 #define _CTRL(c) (c | 0100) macro
|