Searched refs:EditLine (Results 1 - 25 of 52) sorted by relevance

123

/freebsd-10.0-release/lib/libedit/
H A Drefresh.h51 protected void re_putc(EditLine *, int, int);
52 protected void re_clear_lines(EditLine *);
53 protected void re_clear_display(EditLine *);
54 protected void re_refresh(EditLine *);
55 protected void re_refresh_cursor(EditLine *);
56 protected void re_fastaddc(EditLine *);
57 protected void re_goto_bottom(EditLine *);
H A Dprompt.h45 typedef char * (*el_pfunc_t)(EditLine*);
54 protected void prompt_print(EditLine *, int);
55 protected int prompt_set(EditLine *, el_pfunc_t, char, int);
56 protected int prompt_get(EditLine *, el_pfunc_t *, char *, int);
57 protected int prompt_init(EditLine *);
58 protected void prompt_end(EditLine *);
H A Dread.h39 typedef int (*el_rfunc_t)(EditLine *, char *);
45 protected int read_init(EditLine *);
46 protected void read_prepare(EditLine *);
47 protected void read_finish(EditLine *);
48 protected int el_read_setfn(EditLine *, el_rfunc_t);
49 protected el_rfunc_t el_read_getfn(EditLine *);
H A Dsearch.h56 protected int search_init(EditLine *);
57 protected void search_end(EditLine *);
58 protected int c_hmatch(EditLine *, const char *);
59 protected void c_setpat(EditLine *);
60 protected el_action_t ce_inc_search(EditLine *, int);
61 protected el_action_t cv_search(EditLine *, int);
62 protected el_action_t ce_search_line(EditLine *, int);
63 protected el_action_t cv_repeat_srch(EditLine *, int);
64 protected el_action_t cv_csearch(EditLine *, int, int, int, int);
H A Dterm.h85 protected void term_move_to_line(EditLine *, int);
86 protected void term_move_to_char(EditLine *, int);
87 protected void term_clear_EOL(EditLine *, int);
88 protected void term_overwrite(EditLine *, const char *, size_t);
89 protected void term_insertwrite(EditLine *, char *, int);
90 protected void term_deletechars(EditLine *, int);
91 protected void term_clear_screen(EditLine *);
92 protected void term_beep(EditLine *);
93 protected int term_change_size(EditLine *, int, int);
94 protected int term_get_size(EditLine *, in
[all...]
H A Dfilecomplete.h35 int fn_complete(EditLine *,
44 void fn_display_match_list(EditLine *, char **, size_t, size_t);
H A Dmap.h66 protected int map_bind(EditLine *, int, const char **);
67 protected int map_init(EditLine *);
68 protected void map_end(EditLine *);
69 protected void map_init_vi(EditLine *);
70 protected void map_init_emacs(EditLine *);
71 protected int map_set_editor(EditLine *, char *);
72 protected int map_get_editor(EditLine *, const char **);
73 protected int map_addfunc(EditLine *, const char *, const char *, el_func_t);
H A Dparse.h43 protected int parse_line(EditLine *, const char *);
46 protected int parse_cmd(EditLine *, const char *);
H A Dkey.h67 protected int key_init(EditLine *);
68 protected void key_end(EditLine *);
69 protected key_value_t *key_map_cmd(EditLine *, int);
70 protected key_value_t *key_map_str(EditLine *, char *);
71 protected void key_reset(EditLine *);
72 protected int key_get(EditLine *, char *, key_value_t *);
73 protected void key_add(EditLine *, const char *, key_value_t *, int);
74 protected void key_clear(EditLine *, el_action_t *, const char *);
75 protected int key_delete(EditLine *, const char *);
76 protected void key_print(EditLine *, cons
[all...]
H A Dhistedit.h55 typedef struct editline EditLine; typedef in typeref:struct:editline
67 * EditLine editor function return codes.
84 EditLine *el_init(const char *, FILE *, FILE *, FILE *);
85 void el_end(EditLine *);
86 void el_reset(EditLine *);
91 const char *el_gets(EditLine *, int *);
92 int el_getc(EditLine *, char *);
93 void el_push(EditLine *, const char *);
98 void el_beep(EditLine *);
104 int el_parse(EditLine *, in
[all...]
H A Dsig.h67 protected void sig_end(EditLine*);
68 protected int sig_init(EditLine*);
69 protected void sig_set(EditLine*);
70 protected void sig_clr(EditLine*);
H A Dchared.h145 protected void cv_delfini(EditLine *);
148 protected void cv_undo(EditLine *);
149 protected void cv_yank(EditLine *, const char *, int);
150 protected char *cv_next_word(EditLine*, char *, char *, int, int (*)(int));
154 protected void c_insert(EditLine *, int);
155 protected void c_delbefore(EditLine *, int);
156 protected void c_delbefore1(EditLine *);
157 protected void c_delafter(EditLine *, int);
158 protected void c_delafter1(EditLine *);
159 protected int c_gets(EditLine *, cha
[all...]
H A Dhist.h69 protected int hist_init(EditLine *);
70 protected void hist_end(EditLine *);
71 protected el_action_t hist_get(EditLine *);
72 protected int hist_set(EditLine *, hist_fun_t, ptr_t);
73 protected int hist_command(EditLine *, int, const char **);
74 protected int hist_enlargebuf(EditLine *, size_t, size_t);
H A Dprompt.c48 private char *prompt_default(EditLine *);
49 private char *prompt_default_r(EditLine *);
56 prompt_default(EditLine *el __unused)
69 prompt_default_r(EditLine *el __unused)
84 prompt_print(EditLine *el, int op)
115 prompt_init(EditLine *el)
135 prompt_end(EditLine *el __unused)
144 prompt_set(EditLine *el, el_pfunc_t prf, char c, int op)
174 prompt_get(EditLine *el, el_pfunc_t *prf, char *c, int op)
H A Dcommon.c53 ed_end_of_file(EditLine *el, int c __unused)
67 ed_insert(EditLine *el, int c)
110 ed_delete_prev_word(EditLine *el, int c __unused)
138 ed_delete_next_char(EditLine *el, int c)
185 ed_kill_line(EditLine *el, int c __unused)
206 ed_move_to_end(EditLine *el, int c __unused)
229 ed_move_to_beg(EditLine *el, int c __unused)
252 ed_transpose_chars(EditLine *el, int c)
278 ed_next_char(EditLine *el, int c __unused)
307 ed_prev_word(EditLine *e
[all...]
H A Dvi.c48 private el_action_t cv_action(EditLine *, int);
49 private el_action_t cv_paste(EditLine *, int);
55 cv_action(EditLine *el, int c)
87 cv_paste(EditLine *el, int c)
118 vi_paste_next(EditLine *el, int c __unused)
131 vi_paste_prev(EditLine *el, int c __unused)
144 vi_prev_big_word(EditLine *el, int c)
169 vi_prev_word(EditLine *el, int c __unused)
194 vi_next_big_word(EditLine *el, int c)
218 vi_next_word(EditLine *e
[all...]
H A Demacs.c53 em_delete_or_list(EditLine *el, int c)
89 em_delete_next_word(EditLine *el, int c __unused)
118 em_yank(EditLine *el, int c __unused)
153 em_kill_line(EditLine *el, int c __unused)
175 em_kill_region(EditLine *el, int c __unused)
208 em_copy_region(EditLine *el, int c __unused)
237 em_gosmacs_transpose(EditLine *el, int c)
257 em_next_word(EditLine *el, int c __unused)
282 em_upper_case(EditLine *el, int c __unused)
306 em_capitol_case(EditLine *e
[all...]
H A Dhist.c52 hist_init(EditLine *el)
70 hist_end(EditLine *el)
82 hist_set(EditLine *el, hist_fun_t fun, ptr_t ptr)
96 hist_get(EditLine *el)
154 hist_command(EditLine *el, int argc, const char **argv)
192 hist_enlargebuf(EditLine *el, size_t oldsz, size_t newsz)
H A Dparse.c60 int (*func)(EditLine *, int, const char **);
77 parse_line(EditLine *el, const char *line)
95 el_parse(EditLine *el, int argc, const char *argv[])
253 parse_cmd(EditLine *el, const char *cmd)
H A Dkey.c80 private int node_trav(EditLine *, key_node_t *, char *,
82 private int node__try(EditLine *, key_node_t *, const char *,
86 private void node__put(EditLine *, key_node_t *);
87 private int node__delete(EditLine *, key_node_t **, const char *);
88 private int node_lookup(EditLine *, const char *, key_node_t *,
90 private int node_enum(EditLine *, key_node_t *, size_t);
99 key_init(EditLine *el)
114 key_end(EditLine *el)
127 key_map_cmd(EditLine *el, int cmd)
139 key_map_str(EditLine *e
[all...]
H A Dread.c55 private int read_preread(EditLine *);
56 private int read_char(EditLine *, char *);
57 private int read_getcmd(EditLine *, el_action_t *, char *);
64 read_init(EditLine *el)
77 el_read_setfn(EditLine *el, el_rfunc_t rc)
89 el_read_getfn(EditLine *el)
102 read_debug(EditLine *el)
185 read_preread(EditLine *el)
214 el_push(EditLine *el, const char *str)
233 read_getcmd(EditLine *e
[all...]
H A Dtty.h459 protected int tty_init(EditLine *);
460 protected void tty_end(EditLine *);
461 protected int tty_stty(EditLine *, int, const char **);
462 protected int tty_rawmode(EditLine *);
463 protected int tty_cookedmode(EditLine *);
464 protected int tty_quotemode(EditLine *);
465 protected int tty_noquotemode(EditLine *);
466 protected void tty_bind_char(EditLine *, int);
/freebsd-10.0-release/bin/sh/
H A Dmyhistedit.h36 extern EditLine *el;
/freebsd-10.0-release/usr.bin/bc/
H A Dextern.h39 extern EditLine *el;
/freebsd-10.0-release/contrib/llvm/tools/lldb/tools/driver/
H A DIOChannel.h115 ElCompletionFn (EditLine *e, int ch);
141 EditLine *m_edit_line;
153 HandleCompletion (EditLine *e, int ch);

Completed in 203 milliseconds

123