Home
last modified time | relevance | path

Searched refs:VFunction (Results 1 – 18 of 18) sorted by relevance

/openbsd/src/gnu/usr.bin/texinfo/info/
Dterminal.h57 extern VFunction *terminal_initialize_terminal_hook;
62 extern VFunction *terminal_get_screen_size_hook;
68 extern VFunction *terminal_prep_terminal_hook;
69 extern VFunction *terminal_unprep_terminal_hook;
73 extern VFunction *terminal_new_terminal_hook;
77 extern VFunction *terminal_goto_xy_hook;
81 extern VFunction *terminal_put_text_hook;
85 extern VFunction *terminal_write_chars_hook;
89 extern VFunction *terminal_clear_to_eol_hook;
93 extern VFunction *terminal_clear_screen_hook;
[all …]
Dterminal.c55 VFunction *terminal_begin_inverse_hook = (VFunction *)NULL;
56 VFunction *terminal_end_inverse_hook = (VFunction *)NULL;
57 VFunction *terminal_prep_terminal_hook = (VFunction *)NULL;
58 VFunction *terminal_unprep_terminal_hook = (VFunction *)NULL;
59 VFunction *terminal_up_line_hook = (VFunction *)NULL;
60 VFunction *terminal_down_line_hook = (VFunction *)NULL;
61 VFunction *terminal_clear_screen_hook = (VFunction *)NULL;
62 VFunction *terminal_clear_to_eol_hook = (VFunction *)NULL;
63 VFunction *terminal_get_screen_size_hook = (VFunction *)NULL;
64 VFunction *terminal_goto_xy_hook = (VFunction *)NULL;
[all …]
Ddoc.h57 VFunction *func;
78 #define InfoFunction(ic) ((ic) ? (ic)->func : (VFunction *) NULL)
82 typedef VFunction InfoCommand;
Dsession.c52 VFunction *info_last_executed_command = NULL;
200 if ((info_last_executed_command != (VFunction *) info_next_line) && in info_read_and_dispatch()
201 (info_last_executed_command != (VFunction *) info_prev_line)) in info_read_and_dispatch()
238 if (ea_last_executed_command == (VFunction *) ea_newline || in info_read_and_dispatch()
241 ea_last_executed_command = (VFunction *)NULL; in info_read_and_dispatch()
245 if (info_last_executed_command == (VFunction *) info_quit) in info_read_and_dispatch()
248 else if (info_last_executed_command == (VFunction *) info_quit) in info_read_and_dispatch()
287 window_deletion_notifier = (VFunction *) forget_window_and_nodes; in initialize_info_session()
3921 VFunction *func = (VFunction *)NULL; in incremental_search()
3988 else if (func == (VFunction *) isearch_forward in incremental_search()
[all …]
Decho-area.c40 VFunction *ea_last_executed_command = (VFunction *)NULL;
580 if (((ea_last_executed_command != (VFunction *) ea_yank) &&
581 (ea_last_executed_command != (VFunction *) ea_yank_pop)) ||
1101 if (ea_last_executed_command == (VFunction *) ea_complete)
Dinfo.h36 typedef void VFunction (); typedef
Dwindow.h129 extern VFunction *window_deletion_notifier;
Decho-area.h39 extern VFunction *ea_last_executed_command;
Dinfo.c455 info_last_executed_command = (VFunction *)NULL; in main()
Dsession.h39 extern VFunction *info_last_executed_command;
Dinfodoc.c337 if (InfoFunction(cmd) != (VFunction *) info_do_lowercase_version
701 == (VFunction *) info_do_lowercase_version)
Dwindow.c102 VFunction *window_deletion_notifier = NULL;
/openbsd/src/lib/libedit/readline/
Dreadline.h42 typedef void VFunction(void); typedef
134 extern VFunction *rl_redisplay_function;
135 extern VFunction *rl_completion_display_matches_hook;
136 extern VFunction *rl_prep_term_function;
137 extern VFunction *rl_deprep_term_function;
/openbsd/src/gnu/lib/libreadline/
Drltypedefs.h36 typedef void VFunction (); typedef
DCHANGES196 k. The Function, CPFunction, CPPFunction, and VFunction typedefs have been
/openbsd/src/gnu/usr.bin/binutils/gdb/tui/
Dtui-io.c131 static VFunction *tui_old_rl_redisplay_function;
132 static VFunction *tui_old_rl_prep_terminal;
133 static VFunction *tui_old_rl_deprep_terminal;
/openbsd/src/lib/libedit/
Dreadline.c84 VFunction *rl_event_hook = NULL;
115 VFunction *rl_redisplay_function = NULL;
117 VFunction *rl_completion_display_matches_hook = NULL;
118 VFunction *rl_prep_term_function = (VFunction *)rl_prep_terminal;
119 VFunction *rl_deprep_term_function = (VFunction *)rl_deprep_terminal;
/openbsd/src/gnu/usr.bin/texinfo/
DChangeLog979 * info/doc.h (InfoFunction): cast NULL to VFunction *, to