/illumos-gate/usr/src/ucbhead/sys/ |
H A D | ttychars.h | 47 #ifndef CTRL 48 #define CTRL(c) ((c) & 037) macro 53 #define CKILL CTRL('u') 54 #define CINTR CTRL('c') 56 #define CSTART CTRL('q') 57 #define CSTOP CTRL('s') 58 #define CEOF CTRL('d') 61 #define CSUSP CTRL('z') 62 #define CDSUSP CTRL('y') 63 #define CRPRNT CTRL('r') [all …]
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | ttychars.h | 66 #define CTRL(c) ((c)&037) macro 70 #define CKILL CTRL('u') 71 #define CINTR CTRL('c') 73 #define CSTART CTRL('q') 74 #define CSTOP CTRL('s') 75 #define CEOF CTRL('d') 78 #define CSUSP CTRL('z') 79 #define CDSUSP CTRL('y') 80 #define CRPRNT CTRL('r') 81 #define CFLUSH CTRL('o') [all …]
|
H A D | termios.h | 64 #define CTRL(c) ((c)&037) macro 162 #define CINTR CTRL('c') 165 #define CERASE2 CTRL('h') 166 #define CKILL CTRL('u') 175 #define CSUSP CTRL('z') 176 #define CDSUSP CTRL('y') 177 #define CRPRNT CTRL('r') 178 #define CFLUSH CTRL('o') 179 #define CWERASE CTRL('w') 180 #define CLNEXT CTRL('v') [all …]
|
/illumos-gate/usr/src/cmd/vi/port/ |
H A D | ex_vmain.c | 265 case CTRL('l'): 266 case CTRL('r'): 267 if (c == CTRL('l') || (key_right && *key_right==CTRL('l'))) { 373 case CTRL('u'): 389 case CTRL('d'): 418 case CTRL('e'): 433 case CTRL('y'): 482 case CTRL('f'): 497 case CTRL('b'): 1002 case CTRL('^'): [all …]
|
H A D | ex_get.c | 56 while (!globp && c == CTRL('d')); in getchar() 71 if (!globp && c == CTRL('d')) in getcd() 127 inputline[c++] = CTRL('d'); in getach() 177 while ((c = getcd()) == CTRL('d')) { in gettty() 190 if (ch == CTRL('d')) { in gettty()
|
H A D | ex_voper.c | 196 case CTRL('X'): in operate() 201 if ((c != CTRL('_')) && (c != (CTRL(']')))) in operate() 546 case CTRL('h'): in operate() 654 case CTRL('p'): in operate() 701 case CTRL('n'): in operate() 987 case CTRL('A'): in get_addr() 992 case CTRL('B'): in get_addr()
|
H A D | ex_vget.c | 150 c = CTRL('c'); in getbr() 227 case CTRL('v'): in getesc() 228 case CTRL('q'): in getesc() 293 if (Peekkey != ATTN && Peekkey != QUIT && Peekkey != CTRL('h')) { 299 OPeek = Peekkey==CTRL('h') ? 0 : Peekkey; Peekkey = 0;
|
H A D | ex_vops2.c | 1023 c = CTRL('h'); 1050 case CTRL('h'): 1071 case CTRL('w'): 1133 case CTRL('q'): 1134 case CTRL('v'): 1392 case CTRL('t'): 1403 if (ch == CTRL('t')) { 1426 case CTRL('d'):
|
H A D | ex_cmds.c | 180 c == CTRL('d') || c == EOF) { 993 c = CTRL('k'); 1009 if (c == CTRL('k')) { 1078 case CTRL('d'):
|
H A D | ex_tty.c | 215 if (sc[0] == CTRL('z')) { in setterm() 217 if (arrows[i].cap && arrows[i].cap[0] == CTRL('z')) in setterm()
|
H A D | ex_cmds2.c | 654 while (peekkey() == CTRL('Q') || peekkey() == CTRL('S')) in vcontin()
|
H A D | ex_vops3.c | 312 linebuf[0] == CTRL('L') || in endPS() 589 linebuf[0] == CTRL('L') || in lbrack()
|
H A D | ex.h | 204 #undef CTRL 205 #define CTRL(c) (c & 037) macro
|
H A D | ex_put.c | 1089 if (tty.c_cc[VSTART] != CTRL('q')) in ttcharoff() 1091 if (tty.c_cc[VSTOP] != CTRL('s')) in ttcharoff()
|
/illumos-gate/usr/src/grub/grub-0.97/netboot/ |
H A D | e1000.c | 1001 ctrl = E1000_READ_REG(hw, CTRL); 1005 E1000_WRITE_REG_IO(hw, CTRL, (ctrl | E1000_CTRL_PHY_RST)); 1025 E1000_WRITE_REG_IO(hw, CTRL, (ctrl | E1000_CTRL_RST)); 1033 E1000_WRITE_REG(hw, CTRL, (ctrl | E1000_CTRL_RST)); 1165 ctrl = E1000_READ_REG(hw, CTRL); 1166 E1000_WRITE_REG(hw, CTRL, ctrl | E1000_CTRL_PRIOR); 1420 ctrl = E1000_READ_REG(hw, CTRL); 1492 E1000_WRITE_REG(hw, CTRL, ctrl); 1505 (E1000_READ_REG(hw, CTRL) & E1000_CTRL_SWDPIN1) == signal) { 1550 ctrl = E1000_READ_REG(hw, CTRL); [all …]
|
/illumos-gate/usr/src/uts/i86pc/boot/ |
H A D | boot_keyboard_table.c | 38 #define CTRL KBTYPE_SPEC_CTRL macro 79 /* 1d */ CTRL, CTRL, CTRL, CTRL,
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/ |
H A D | domacro.c | 156 #define CTRL(c) ((c)&037) in domacro() macro 158 (void) putchar(CTRL('g')); in domacro()
|
H A D | main.c | 467 #ifndef CTRL in cmdscanner() 468 #define CTRL(c) ((c)&037) in cmdscanner() macro 472 (void) putchar(CTRL('g')); in cmdscanner()
|
/illumos-gate/usr/src/cmd/mdb/common/mdb/ |
H A D | mdb_termio.c | 1612 td->tio_keymap[CTRL('f')] = termio_fwdchar; in mdb_termio_create() 1613 td->tio_keymap[CTRL('b')] = termio_backchar; in mdb_termio_create() 1614 td->tio_keymap[CTRL('t')] = termio_transpose; in mdb_termio_create() 1615 td->tio_keymap[CTRL('a')] = termio_home; in mdb_termio_create() 1616 td->tio_keymap[CTRL('e')] = termio_end; in mdb_termio_create() 1621 td->tio_keymap[CTRL('k')] = termio_kill; in mdb_termio_create() 1622 td->tio_keymap[CTRL('p')] = termio_prevhist; in mdb_termio_create() 1623 td->tio_keymap[CTRL('n')] = termio_nexthist; in mdb_termio_create() 1624 td->tio_keymap[CTRL('r')] = termio_findhist; in mdb_termio_create() 1625 td->tio_keymap[CTRL('l')] = termio_refresh; in mdb_termio_create() [all …]
|
H A D | mdb_io.c | 155 #ifndef CTRL 156 #define CTRL(c) ((c) & 0x01f) macro 310 case CTRL('c'): in iob_pager() 311 case CTRL('\\'): in iob_pager()
|
/illumos-gate/usr/src/ucblib/libtermcap/ |
H A D | tgoto.c | 162 if (which == 0 || which == CTRL('d') || which == '\n') { in tgoto()
|
/illumos-gate/usr/src/uts/common/io/ |
H A D | rlmod.c | 229 rmip->startc = CTRL('q'); in rlmodopen() 230 rmip->stopc = CTRL('s'); in rlmodopen() 1143 stop = (ixon && (rmip->stopc == CTRL('s')) && in tty_flow() 1144 (rmip->startc == CTRL('q'))); in tty_flow()
|
H A D | tty_pts.c | 955 pty->pt_ttycommon.t_stopc == CTRL('s') && in pt_sendstop() 956 pty->pt_ttycommon.t_startc == CTRL('q'); in pt_sendstop()
|
/illumos-gate/usr/src/ucbcmd/stty/ |
H A D | sttyparse.c | 129 cb->c_cc[VKILL] = CTRL('u'); 130 cb->c_cc[VINTR] = CTRL('c');
|
/illumos-gate/usr/src/uts/common/os/ |
H A D | console.c | 395 case CTRL('u'): in console_gets()
|