/dflybsd-src/contrib/gdb-7/readline/ |
H A D | emacs_keymap.c | 38 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-c */ 50 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-o */ 59 { ISKMAP, (rl_command_func_t *)emacs_ctlx_keymap }, /* Control-x */ 61 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-z */ 62 { ISKMAP, (rl_command_func_t *)emacs_meta_keymap }, /* Control-[ */ 63 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-\ */ 65 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-^ */ 324 { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-@ */ 325 { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-a */ 326 { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-b */ [all …]
|
H A D | vi_keymap.c | 35 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-@ */ 36 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-a */ 37 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-b */ 38 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-c */ 41 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-f */ 44 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-i */ 50 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-o */ 59 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-x */ 61 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-z */ 63 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-[ */ /* vi_escape_keymap */ [all …]
|
H A D | readline.h | 70 rl_command_func_t *function; 295 extern int rl_add_defun PARAMS((const char *, rl_command_func_t *, int)); 296 extern int rl_bind_key PARAMS((int, rl_command_func_t *)); 297 extern int rl_bind_key_in_map PARAMS((int, rl_command_func_t *, Keymap)); 300 extern int rl_bind_key_if_unbound PARAMS((int, rl_command_func_t *)); 301 extern int rl_bind_key_if_unbound_in_map PARAMS((int, rl_command_func_t *, Keymap)); 302 extern int rl_unbind_function_in_map PARAMS((rl_command_func_t *, Keymap)); 304 extern int rl_bind_keyseq PARAMS((const char *, rl_command_func_t *)); 305 extern int rl_bind_keyseq_in_map PARAMS((const char *, rl_command_func_t *, Keymap)); 306 extern int rl_bind_keyseq_if_unbound PARAMS((const char *, rl_command_func_t *)); [all …]
|
H A D | bind.c | 101 rl_command_func_t *function; 114 rl_command_func_t *function; 145 rl_command_func_t *function; 164 rl_command_func_t *default_func; 177 rl_command_func_t *default_func; 192 return (rl_bind_key (key, (rl_command_func_t *)NULL)); 202 return (rl_bind_key_in_map (key, (rl_command_func_t *)NULL, map)); 208 rl_command_func_t *func; in rl_unbind_function_in_map() 217 map[i].function = (rl_command_func_t *)NULL; 229 rl_command_func_t *func; [all …]
|
H A D | rldefs.h | 112 # define KEYMAP_TO_FUNCTION(data) (rl_command_func_t *)((int)(data)) 115 # define KEYMAP_TO_FUNCTION(data) (rl_command_func_t *)(data)
|
H A D | readline.c | 163 rl_command_func_t *rl_last_func = (rl_command_func_t *)NULL; 735 rl_command_func_t *func; 902 rl_command_func_t *func, *nf; 988 rl_last_func = (rl_command_func_t *)NULL; in rl_initialize() 1180 rl_bind_keyseq_in_map ("\033", (rl_command_func_t *)NULL, vi_movement_keymap); in bind_arrow_keys()
|
H A D | funmap.c | 197 {(char *)NULL, (rl_command_func_t *)NULL } 203 rl_command_func_t *function;
|
H A D | rltty.c | 124 static void set_special_char PARAMS((Keymap, TIOTYPE *, int, rl_command_func_t)); 344 static void set_special_char PARAMS((Keymap, TIOTYPE *, int, rl_command_func_t)); 799 rl_command_func_t *func; 835 rl_command_func_t *func;
|
H A D | keymaps.h | 46 rl_command_func_t *function;
|
H A D | rltypedefs.h | 47 typedef int rl_command_func_t PARAMS((int, int));
|
H A D | keymaps.c | 66 keymap[i].function = (rl_command_func_t *)NULL; in rl_make_bare_keymap()
|
H A D | isearch.c | 331 rl_command_func_t *f; 333 f = (rl_command_func_t *)NULL;
|
H A D | util.c | 110 rl_last_func = (rl_command_func_t *)NULL; in _rl_abort_internal()
|
H A D | complete.c | 434 rl_command_func_t *cfunc; in rl_completion_mode()
|
/dflybsd-src/contrib/libedit/src/editline/ |
H A D | readline.h | 46 typedef int rl_command_func_t(int, int); typedef 209 int rl_bind_key(int, rl_command_func_t *); 222 int rl_add_defun(const char *, rl_command_func_t *, int); 253 int rl_bind_key_in_map(int, rl_command_func_t *, Keymap); 254 int rl_set_key(const char *, rl_command_func_t *, Keymap);
|
/dflybsd-src/contrib/libedit/src/ |
H A D | readline.c | 181 static rl_command_func_t *map[256]; 2006 rl_bind_key(int c, rl_command_func_t *func) in rl_bind_key() 2118 rl_add_defun(const char *name, rl_command_func_t *fun, int c) in rl_add_defun() 2522 rl_command_func_t *fun __attribute__((__unused__)), in rl_bind_key_in_map() 2530 rl_command_func_t *function __attribute__((__unused__)), in rl_set_key()
|