/netbsd-src/external/gpl3/gdb/dist/readline/readline/ |
H A D | emacs_keymap.c | 38 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-c */ 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-^ */ 318 { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-@ */ 319 { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-a */ 320 { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-b */ 321 { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-c */ [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; 307 extern int rl_add_defun PARAMS((const char *, rl_command_func_t *, int)); 308 extern int rl_bind_key PARAMS((int, rl_command_func_t *)); 309 extern int rl_bind_key_in_map PARAMS((int, rl_command_func_t *, Keymap)); 312 extern int rl_bind_key_if_unbound PARAMS((int, rl_command_func_t *)); 313 extern int rl_bind_key_if_unbound_in_map PARAMS((int, rl_command_func_t *, Keymap)); 314 extern int rl_unbind_function_in_map PARAMS((rl_command_func_t *, Keymap)); 316 extern int rl_bind_keyseq PARAMS((const char *, rl_command_func_t *)); 317 extern int rl_bind_keyseq_in_map PARAMS((const char *, rl_command_func_t *, Keymap)); 318 extern int rl_bind_keyseq_if_unbound PARAMS((const char *, rl_command_func_t *)); [all …]
|
H A D | bind.c | 83 static rl_command_func_t *_rl_function_of_keyseq_internal PARAMS((const char *, size_t, Keymap, int… 126 rl_add_defun (const char *name, rl_command_func_t *function, int key) in rl_add_defun() 136 rl_bind_key (int key, rl_command_func_t *function) in rl_bind_key() 204 rl_bind_key_in_map (int key, rl_command_func_t *function, Keymap map) in rl_bind_key_in_map() 219 rl_bind_key_if_unbound_in_map (int key, rl_command_func_t *default_func, Keymap kmap) in rl_bind_key_if_unbound_in_map() 228 rl_bind_key_if_unbound (int key, rl_command_func_t *default_func) in rl_bind_key_if_unbound() 242 return (rl_bind_key (key, (rl_command_func_t *)NULL)); in rl_unbind_key() 249 return (rl_bind_key_in_map (key, (rl_command_func_t *)NULL, map)); in rl_unbind_key_in_map() 254 rl_unbind_function_in_map (rl_command_func_t *func, Keymap map) in rl_unbind_function_in_map() 262 map[i].function = (rl_command_func_t *)NULL; in rl_unbind_function_in_map() [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 | 172 rl_command_func_t *rl_last_func = (rl_command_func_t *)NULL; 846 rl_command_func_t *func; in _rl_dispatch_subseq() 1075 rl_command_func_t *func, *nf; in _rl_subseq_result() 1178 rl_last_func = (rl_command_func_t *)NULL; in rl_initialize() 1401 rl_bind_keyseq_in_map ("\033", (rl_command_func_t *)NULL, vi_movement_keymap); in bind_arrow_keys()
|
H A D | funmap.c | 207 {(char *)NULL, (rl_command_func_t *)NULL } 211 rl_add_funmap_entry (const char *name, rl_command_func_t *function) in rl_add_funmap_entry()
|
H A D | rltty.c | 130 static void set_special_char PARAMS((Keymap, TIOTYPE *, int, rl_command_func_t *)); 343 static void set_special_char PARAMS((Keymap, TIOTYPE *, int, rl_command_func_t *)); 821 set_special_char (Keymap kmap, TIOTYPE *tiop, int sc, rl_command_func_t *func) in set_special_char() 851 set_special_char (Keymap kmap, TIOTYPE *tiop, int sc, rl_command_func_t *func) in set_special_char()
|
H A D | keymaps.h | 46 rl_command_func_t *function;
|
H A D | rltypedefs.h | 54 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 | rlprivate.h | 117 rl_command_func_t *func;
|
H A D | util.c | 113 rl_last_func = (rl_command_func_t *)NULL; in _rl_abort_internal()
|
H A D | vi_mode.c | 2263 vi_replace_map[ANYOTHERKEY].function = (rl_command_func_t *)NULL; in rl_vi_replace()
|
H A D | complete.c | 475 rl_completion_mode (rl_command_func_t *cfunc) in rl_completion_mode()
|
/netbsd-src/external/gpl3/gdb.old/dist/readline/readline/ |
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 | 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 | keymaps.h | 46 rl_command_func_t *function;
|
H A D | rltypedefs.h | 54 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()
|
/netbsd-src/lib/libedit/readline/ |
H A D | readline.h | 47 typedef int rl_command_func_t(int, int); typedef 219 int rl_bind_key(int, rl_command_func_t *); 232 int rl_add_defun(const char *, rl_command_func_t *, int); 263 int rl_bind_key_in_map(int, rl_command_func_t *, Keymap); 264 int rl_set_key(const char *, rl_command_func_t *, Keymap);
|
/netbsd-src/external/gpl3/gdb/dist/readline/readline/doc/ |
H A D | rltech.texi | 150 @code{int rl_bind_key (int @var{key}, rl_command_func_t *@var{function});} 226 @code{rl_command_func_t *func;} 231 @item typedef int rl_command_func_t (int, int); 428 @deftypevar {rl_command_func_t *} rl_last_func 662 @deftypefun int rl_add_defun (const char *name, rl_command_func_t *function, int key) 771 @deftypefun int rl_bind_key (int key, rl_command_func_t *function) 776 @deftypefun int rl_bind_key_in_map (int key, rl_command_func_t *function, Keymap map) 781 @deftypefun int rl_bind_key_if_unbound (int key, rl_command_func_t *function) 788 @deftypefun int rl_bind_key_if_unbound_in_map (int key, rl_command_func_t *function, Keymap map) 804 @deftypefun int rl_unbind_function_in_map (rl_command_func_t *function, Keymap map) [all …]
|
H A D | readline.info | 1642 int rl_bind_key (int KEY, rl_command_func_t *FUNCTION); 1716 'rl_command_func_t *func;' 1720 'typedef int rl_command_func_t (int, int);' 1897 -- Variable: rl_command_func_t * rl_last_func 2120 -- Function: int rl_add_defun (const char *name, rl_command_func_t 2224 -- Function: int rl_bind_key (int key, rl_command_func_t *function) 2228 -- Function: int rl_bind_key_in_map (int key, rl_command_func_t 2233 -- Function: int rl_bind_key_if_unbound (int key, rl_command_func_t 2240 rl_command_func_t *function, Keymap map) 2252 -- Function: int rl_unbind_function_in_map (rl_command_func_t [all …]
|
/netbsd-src/lib/libedit/ |
H A D | readline.c | 179 static rl_command_func_t *map[256]; 2012 rl_bind_key(int c, rl_command_func_t *func) in rl_bind_key() 2124 rl_add_defun(const char *name, rl_command_func_t *fun, int c) in rl_add_defun() 2530 rl_command_func_t *fun __attribute__((__unused__)), in rl_bind_key_in_map() 2538 rl_command_func_t *function __attribute__((__unused__)), in rl_set_key()
|