Searched refs:CTRL (Results 1 - 25 of 44) sorted by relevance

12

/haiku-fatelf/src/libs/ncurses/test/
H A Dedit_field.c24 CTRL('A'), REQ_NEXT_CHOICE, ""
27 CTRL('B'), REQ_PREV_WORD, "go to previous word"
30 CTRL('C'), REQ_CLR_EOL, "clear to end of line"
33 CTRL('D'), REQ_DOWN_FIELD, "move downward to field"
36 CTRL('E'), REQ_END_FIELD, "go to end of field"
39 CTRL('F'), REQ_NEXT_PAGE, "go to next page"
42 CTRL('G'), REQ_DEL_WORD, "delete current word"
45 CTRL('H'), REQ_DEL_PREV, "delete previous character"
48 CTRL('I'), REQ_INS_CHAR, "insert character"
51 CTRL('
[all...]
H A Dtest.priv.h220 #ifndef CTRL
221 #define CTRL(x) ((x) & 0x1f) macro
224 #define QUIT CTRL('Q')
225 #define ESCAPE CTRL('[')
H A Dncurses.c165 while ((c = wgetch(win)) == CTRL('T')) {
207 case CTRL('U'):
258 while ((c = wget_wch(win, result)) == CTRL('T')) {
341 case CTRL('U'):
1252 case CTRL('L'):
1528 case CTRL('L'):
1827 case CTRL('p'):
1835 case CTRL('n'):
1843 case CTRL('b'):
1854 case CTRL('
[all...]
H A Dcardfile.c303 case CTRL('W'):
305 case CTRL('N'):
307 case CTRL('P'):
309 case CTRL('Q'):
/haiku-fatelf/src/libs/ncurses/c++/
H A Dinternal.h47 #define CTRL(x) ((x) & 0x1f) macro
H A Dcursesf.cc337 case CTRL('X') : return(CMD_QUIT); // eXit
339 case CTRL('F') : return(REQ_NEXT_FIELD); // Forward
340 case CTRL('B') : return(REQ_PREV_FIELD); // Backward
341 case CTRL('L') : return(REQ_LEFT_FIELD); // Left
342 case CTRL('R') : return(REQ_RIGHT_FIELD); // Right
343 case CTRL('U') : return(REQ_UP_FIELD); // Up
344 case CTRL('D') : return(REQ_DOWN_FIELD); // Down
346 case CTRL('W') : return(REQ_NEXT_WORD);
347 case CTRL('T') : return(REQ_PREV_WORD);
349 case CTRL('
[all...]
H A Dcursesm.cc265 case CTRL('X') : return(CMD_QUIT); // eXit
268 case CTRL('N') : return(REQ_NEXT_ITEM); // Next
270 case CTRL('P') : return(REQ_PREV_ITEM); // Previous
272 case CTRL('U') : return(REQ_SCR_ULINE); // Up
273 case CTRL('D') : return(REQ_SCR_DLINE); // Down
274 case CTRL('F') : return(REQ_SCR_DPAGE); // Forward
275 case CTRL('B') : return(REQ_SCR_UPAGE); // Backward
277 case CTRL('Y') : return(REQ_CLEAR_PATTERN);
278 case CTRL('H') : return(REQ_BACK_PATTERN);
279 case CTRL('
[all...]
/haiku-fatelf/src/bin/gdb/gdb/tui/
H A Dtui.c59 /* This redefines CTRL if it is not already defined, so it must come
128 This function is bound to CTRL-X 2. It is intended to provide
347 rl_bind_key_in_map (CTRL ('A'), tui_rl_switch_mode, emacs_ctlx_keymap);
348 rl_bind_key_in_map (CTRL ('A'), tui_rl_switch_mode, tui_ctlx_keymap);
471 /* Solaris <sys/termios.h> defines CTRL. */
472 #ifndef CTRL
473 #define CTRL(x) (x & ~0140)
497 ltc.t_suspc = CHK (ltc.t_suspc, CTRL ('Z'));
498 ltc.t_dsuspc = CHK (ltc.t_dsuspc, CTRL ('Y'));
499 ltc.t_rprntc = CHK (ltc.t_rprntc, CTRL ('
[all...]
/haiku-fatelf/src/bin/bash/lib/readline/
H A Dchardefs.h45 #ifdef CTRL
46 # undef CTRL macro
63 #define CTRL(c) ((c) & control_character_mask) macro
133 #define RETURN CTRL('M')
147 #define ABORT_CHAR CTRL('G')
152 #define PAGE CTRL('L')
162 #define ESC CTRL('[')
H A Dsearch.c259 case CTRL('W'):
263 case CTRL('U'):
271 case CTRL('H'):
281 case CTRL('C'):
282 case CTRL('G'):
H A Dkeymaps.c113 newmap[CTRL('H')].function = rl_rubout;
H A Disearch.c350 else if (c == CTRL ('G'))
352 else if (c == CTRL ('W')) /* XXX */
354 else if (c == CTRL ('Y')) /* XXX */
379 ((CTRL_CHAR (c) || META_CHAR (c) || (c) == RUBOUT) && ((c) != CTRL ('G')))
/haiku-fatelf/src/bin/gdb/readline/
H A Dchardefs.h46 #ifdef CTRL
47 # undef CTRL macro
64 #define CTRL(c) ((c) & control_character_mask) macro
128 #define RETURN CTRL('M')
142 #define ABORT_CHAR CTRL('G')
147 #define PAGE CTRL('L')
157 #define ESC CTRL('[')
H A Dsearch.c220 case CTRL('H'):
233 case CTRL('W'):
237 case CTRL('U'):
247 case CTRL('C'):
248 case CTRL('G'):
H A Disearch.c272 else if (c == CTRL ('G'))
274 else if (c == CTRL ('W')) /* XXX */
276 else if (c == CTRL ('Y')) /* XXX */
301 ((CTRL_CHAR (c) || META_CHAR (c) || (c) == RUBOUT) && ((c) != CTRL ('G')))
H A Dkeymaps.c109 newmap[CTRL('H')].function = rl_rubout;
/haiku-fatelf/src/bin/gdb/include/opcode/
H A Di960.h33 the instruction generated (a CTRL-format 'call') should have its relocation
37 #define CTRL 0 macro
139 char format; /* REG, COBR, CTRL, MEMn, COJ, FBRA, or CALLJ */
169 /* if a CTRL instruction has an operand, it's always a displacement */
173 { 0x08000000, "b", I_BASE, CTRL, 1, { 0, 0, 0 } },
174 { 0x09000000, "call", I_BASE, CTRL, 1, { 0, 0, 0 } },
175 { 0x0a000000, "ret", I_BASE, CTRL, 0, { 0, 0, 0 } },
176 { 0x0b000000, "bal", I_BASE, CTRL, 1, { 0, 0, 0 } },
177 { 0x10000000, "bno", I_BASE, CTRL, 1, { 0, 0, 0 } },
179 { 0x10000000, "bf", I_BASE, CTRL,
[all...]
/haiku-fatelf/src/bin/bash/lib/readline/examples/
H A Dexcallback.c120 rl_add_defun("change-prompt", change_prompt, CTRL('t'));
/haiku-fatelf/src/bin/gdb/readline/examples/
H A Dexcallback.c117 rl_add_defun("change-prompt", change_prompt, CTRL('t'));
/haiku-fatelf/src/libs/ncurses/progs/
H A Dtset.c110 #undef CTRL macro
111 #define CTRL(x) ((x) & 0x1f) macro
659 #define CEOF CTRL('D')
662 #define CERASE CTRL('H')
668 #define CKILL CTRL('U')
671 #define CLNEXT CTRL('v')
674 #define CRPRNT CTRL('r')
677 #define CQUIT CTRL('\\')
680 #define CSTART CTRL('Q')
683 #define CSTOP CTRL('
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/network/ipro1000/
H A Dif_em_hw.c359 ctrl = E1000_READ_REG(hw, CTRL);
363 E1000_WRITE_REG_IO(hw, CTRL, (ctrl | E1000_CTRL_PHY_RST));
383 E1000_WRITE_REG_IO(hw, CTRL, (ctrl | E1000_CTRL_RST));
391 E1000_WRITE_REG(hw, CTRL, (ctrl | E1000_CTRL_RST));
526 /* Set the PCI priority bit correctly in the CTRL register. This
531 ctrl = E1000_READ_REG(hw, CTRL);
532 E1000_WRITE_REG(hw, CTRL, ctrl | E1000_CTRL_PRIOR);
759 ctrl = E1000_READ_REG(hw, CTRL);
780 * configure the two flow control enable bits in the CTRL register.
829 E1000_WRITE_REG(hw, CTRL, ctr
[all...]
/haiku-fatelf/src/add-ons/kernel/generic/tty/
H A Dtty.cpp716 termios.c_cc[VINTR] = CTRL('C');
717 termios.c_cc[VQUIT] = CTRL('\\');
719 termios.c_cc[VKILL] = CTRL('U');
720 termios.c_cc[VEOF] = CTRL('D');
723 termios.c_cc[VSTART] = CTRL('S');
724 termios.c_cc[VSTOP] = CTRL('Q');
725 termios.c_cc[VSUSP] = CTRL('Z');
962 buffer[0] = CTRL('H');
964 buffer[2] = CTRL('H');;
H A Dtty_private.h25 #define CTRL(c) ((c) - 0100) macro
/haiku-fatelf/src/bin/bash/
H A Dbashline.c274 rl_bind_key_in_map (CTRL ('I'), on_or_off ? rl_insert : rl_complete, vi_insertion_keymap);
430 rl_bind_key_if_unbound_in_map (CTRL('E'), shell_expand_line, emacs_meta_keymap);
436 rl_bind_key_if_unbound_in_map (CTRL ('O'), operate_and_get_next, emacs_standard_keymap);
437 rl_bind_key_if_unbound_in_map (CTRL ('V'), display_shell_version, emacs_ctlx_keymap);
442 kseq[0] = CTRL('J');
446 rl_unbind_key_in_map (CTRL('J'), emacs_meta_keymap);
447 kseq[0] = CTRL('M');
450 rl_unbind_key_in_map (CTRL('M'), emacs_meta_keymap);
452 rl_unbind_key_in_map (CTRL('E'), vi_movement_keymap);
505 rl_bind_key_if_unbound_in_map (CTRL ('
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/tty/
H A Dtty.cpp792 termios.c_cc[VINTR] = CTRL('C');
793 termios.c_cc[VQUIT] = CTRL('\\');
795 termios.c_cc[VKILL] = CTRL('U');
796 termios.c_cc[VEOF] = CTRL('D');
799 termios.c_cc[VSTART] = CTRL('S');
800 termios.c_cc[VSTOP] = CTRL('Q');
801 termios.c_cc[VSUSP] = CTRL('Z');
1248 buffer[0] = CTRL('H');
1250 buffer[2] = CTRL('H');;

Completed in 130 milliseconds

12