Searched refs:rl_command_func_t (Results 1 - 25 of 45) sorted by relevance

12

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/readline/
H A Demacs_keymap.c39 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-c */
51 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-o */
60 { ISKMAP, (rl_command_func_t *)emacs_ctlx_keymap }, /* Control-x */
62 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-z */
63 { ISKMAP, (rl_command_func_t *)emacs_meta_keymap }, /* Control-[ */
64 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-\ */
66 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-^ */
325 { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-@ */
326 { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-a */
327 { ISFUNC, (rl_command_func_t *)
[all...]
H A Dvi_keymap.c36 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-@ */
37 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-a */
38 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-b */
39 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-c */
42 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-f */
45 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-i */
51 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-o */
60 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-x */
62 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-z */
64 { ISFUNC, (rl_command_func_t *)
[all...]
H A Dreadline.h71 rl_command_func_t *function;
292 extern int rl_add_defun PARAMS((const char *, rl_command_func_t *, int));
293 extern int rl_bind_key PARAMS((int, rl_command_func_t *));
294 extern int rl_bind_key_in_map PARAMS((int, rl_command_func_t *, Keymap));
297 extern int rl_bind_key_if_unbound PARAMS((int, rl_command_func_t *));
298 extern int rl_bind_key_if_unbound_in_map PARAMS((int, rl_command_func_t *, Keymap));
299 extern int rl_unbind_function_in_map PARAMS((rl_command_func_t *, Keymap));
301 extern int rl_bind_keyseq PARAMS((const char *, rl_command_func_t *));
302 extern int rl_bind_keyseq_in_map PARAMS((const char *, rl_command_func_t *, Keymap));
303 extern int rl_bind_keyseq_if_unbound PARAMS((const char *, rl_command_func_t *));
[all...]
H A Dkeymaps.h47 rl_command_func_t *function;
57 union { rl_command_func_t *function; struct _keymap_entry *keymap; } value;
H A Drltypedefs.h48 typedef int rl_command_func_t PARAMS((int, int)); typedef
H A Drldefs.h110 # define KEYMAP_TO_FUNCTION(data) (rl_command_func_t *)((int)(data))
113 # define KEYMAP_TO_FUNCTION(data) (rl_command_func_t *)(data)
H A Dbind.c96 /* rl_add_defun (char *name, rl_command_func_t *function, int key)
102 rl_command_func_t *function;
115 rl_command_func_t *function;
146 rl_command_func_t *function;
165 rl_command_func_t *default_func;
178 rl_command_func_t *default_func;
193 return (rl_bind_key (key, (rl_command_func_t *)NULL));
203 return (rl_bind_key_in_map (key, (rl_command_func_t *)NULL, map));
209 rl_command_func_t *func;
218 map[i].function = (rl_command_func_t *)NUL
[all...]
H A Dfunmap.c189 {(char *)NULL, (rl_command_func_t *)NULL }
195 rl_command_func_t *function;
H A Dkeymaps.c64 keymap[i].function = (rl_command_func_t *)NULL;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/readline/
H A Demacs_keymap.c39 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-c */
51 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-o */
60 { ISKMAP, (rl_command_func_t *)emacs_ctlx_keymap }, /* Control-x */
62 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-z */
63 { ISKMAP, (rl_command_func_t *)emacs_meta_keymap }, /* Control-[ */
64 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-\ */
66 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-^ */
325 { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-@ */
326 { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-a */
327 { ISFUNC, (rl_command_func_t *)
[all...]
H A Dvi_keymap.c36 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-@ */
37 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-a */
38 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-b */
39 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-c */
42 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-f */
45 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-i */
51 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-o */
60 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-x */
62 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-z */
64 { ISFUNC, (rl_command_func_t *)
[all...]
H A Dreadline.h71 rl_command_func_t *function;
292 extern int rl_add_defun PARAMS((const char *, rl_command_func_t *, int));
293 extern int rl_bind_key PARAMS((int, rl_command_func_t *));
294 extern int rl_bind_key_in_map PARAMS((int, rl_command_func_t *, Keymap));
297 extern int rl_bind_key_if_unbound PARAMS((int, rl_command_func_t *));
298 extern int rl_bind_key_if_unbound_in_map PARAMS((int, rl_command_func_t *, Keymap));
299 extern int rl_unbind_function_in_map PARAMS((rl_command_func_t *, Keymap));
301 extern int rl_bind_keyseq PARAMS((const char *, rl_command_func_t *));
302 extern int rl_bind_keyseq_in_map PARAMS((const char *, rl_command_func_t *, Keymap));
303 extern int rl_bind_keyseq_if_unbound PARAMS((const char *, rl_command_func_t *));
[all...]
H A Dkeymaps.h47 rl_command_func_t *function;
57 union { rl_command_func_t *function; struct _keymap_entry *keymap; } value;
H A Drltypedefs.h48 typedef int rl_command_func_t PARAMS((int, int)); typedef
H A Drldefs.h110 # define KEYMAP_TO_FUNCTION(data) (rl_command_func_t *)((int)(data))
113 # define KEYMAP_TO_FUNCTION(data) (rl_command_func_t *)(data)
H A Dbind.c96 /* rl_add_defun (char *name, rl_command_func_t *function, int key)
102 rl_command_func_t *function;
115 rl_command_func_t *function;
146 rl_command_func_t *function;
165 rl_command_func_t *default_func;
178 rl_command_func_t *default_func;
193 return (rl_bind_key (key, (rl_command_func_t *)NULL));
203 return (rl_bind_key_in_map (key, (rl_command_func_t *)NULL, map));
209 rl_command_func_t *func;
218 map[i].function = (rl_command_func_t *)NUL
[all...]
H A Dfunmap.c189 {(char *)NULL, (rl_command_func_t *)NULL }
195 rl_command_func_t *function;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/readline/
H A Demacs_keymap.c39 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-c */
51 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-o */
60 { ISKMAP, (rl_command_func_t *)emacs_ctlx_keymap }, /* Control-x */
62 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-z */
63 { ISKMAP, (rl_command_func_t *)emacs_meta_keymap }, /* Control-[ */
64 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-\ */
66 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-^ */
325 { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-@ */
326 { ISFUNC, (rl_command_func_t *)0x0 }, /* Meta-Control-a */
327 { ISFUNC, (rl_command_func_t *)
[all...]
H A Dvi_keymap.c36 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-@ */
37 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-a */
38 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-b */
39 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-c */
42 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-f */
45 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-i */
51 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-o */
60 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-x */
62 { ISFUNC, (rl_command_func_t *)0x0 }, /* Control-z */
64 { ISFUNC, (rl_command_func_t *)
[all...]
H A Dreadline.h71 rl_command_func_t *function;
292 extern int rl_add_defun PARAMS((const char *, rl_command_func_t *, int));
293 extern int rl_bind_key PARAMS((int, rl_command_func_t *));
294 extern int rl_bind_key_in_map PARAMS((int, rl_command_func_t *, Keymap));
297 extern int rl_bind_key_if_unbound PARAMS((int, rl_command_func_t *));
298 extern int rl_bind_key_if_unbound_in_map PARAMS((int, rl_command_func_t *, Keymap));
299 extern int rl_unbind_function_in_map PARAMS((rl_command_func_t *, Keymap));
301 extern int rl_bind_keyseq PARAMS((const char *, rl_command_func_t *));
302 extern int rl_bind_keyseq_in_map PARAMS((const char *, rl_command_func_t *, Keymap));
303 extern int rl_bind_keyseq_if_unbound PARAMS((const char *, rl_command_func_t *));
[all...]
H A Dkeymaps.h47 rl_command_func_t *function;
57 union { rl_command_func_t *function; struct _keymap_entry *keymap; } value;
H A Drltypedefs.h48 typedef int rl_command_func_t PARAMS((int, int)); typedef
H A Drldefs.h110 # define KEYMAP_TO_FUNCTION(data) (rl_command_func_t *)((int)(data))
113 # define KEYMAP_TO_FUNCTION(data) (rl_command_func_t *)(data)
H A Dbind.c96 /* rl_add_defun (char *name, rl_command_func_t *function, int key)
102 rl_command_func_t *function;
115 rl_command_func_t *function;
146 rl_command_func_t *function;
165 rl_command_func_t *default_func;
178 rl_command_func_t *default_func;
193 return (rl_bind_key (key, (rl_command_func_t *)NULL));
203 return (rl_bind_key_in_map (key, (rl_command_func_t *)NULL, map));
209 rl_command_func_t *func;
218 map[i].function = (rl_command_func_t *)NUL
[all...]
H A Dfunmap.c189 {(char *)NULL, (rl_command_func_t *)NULL }
195 rl_command_func_t *function;

Completed in 183 milliseconds

12