Home
last modified time | relevance | path

Searched refs:rl_command_func_t (Results 1 – 16 of 16) sorted by relevance

/dflybsd-src/contrib/gdb-7/readline/
H A Demacs_keymap.c38 { 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 Dvi_keymap.c35 { 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 Dreadline.h70 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 Dbind.c101 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 Drldefs.h112 # define KEYMAP_TO_FUNCTION(data) (rl_command_func_t *)((int)(data))
115 # define KEYMAP_TO_FUNCTION(data) (rl_command_func_t *)(data)
H A Dreadline.c163 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 Dfunmap.c197 {(char *)NULL, (rl_command_func_t *)NULL }
203 rl_command_func_t *function;
H A Drltty.c124 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 Dkeymaps.h46 rl_command_func_t *function;
H A Drltypedefs.h47 typedef int rl_command_func_t PARAMS((int, int));
H A Dkeymaps.c66 keymap[i].function = (rl_command_func_t *)NULL; in rl_make_bare_keymap()
H A Disearch.c331 rl_command_func_t *f;
333 f = (rl_command_func_t *)NULL;
H A Dutil.c110 rl_last_func = (rl_command_func_t *)NULL; in _rl_abort_internal()
H A Dcomplete.c434 rl_command_func_t *cfunc; in rl_completion_mode()
/dflybsd-src/contrib/libedit/src/editline/
H A Dreadline.h46 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 Dreadline.c181 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()