Lines Matching refs:GetLine

89 typedef struct GetLine GetLine;  typedef
95 GetLine *new_GetLine(size_t linelen, size_t histlen);
96 GetLine *del_GetLine(GetLine *gl);
101 char *gl_get_line(GetLine *gl, const char *prompt, const char *start_line,
119 int gl_query_char(GetLine *gl, const char *prompt, char defchar);
133 int gl_read_char(GetLine *gl);
139 int gl_configure_getline(GetLine *gl, const char *app_string,
156 int gl_bind_keyseq(GetLine *gl, GlKeyOrigin origin, const char *keyseq,
464 int gl_customize_completion(GetLine *gl, void *data, CplMatchFn *match_fn);
497 int gl_completion_action(GetLine *gl, void *data, CplMatchFn *match_fn,
516 int gl_change_terminal(GetLine *gl, FILE *input_fp, FILE *output_fp,
540 int gl_save_history(GetLine *gl, const char *filename, const char *comment,
542 int gl_load_history(GetLine *gl, const char *filename, const char *comment);
592 #define GL_FD_EVENT_FN(fn) GlFdStatus (fn)(GetLine *gl, void *data, int fd, \
618 int gl_watch_fd(GetLine *gl, int fd, GlFdEvent event,
660 #define GL_TIMEOUT_FN(fn) GlAfterTimeout (fn)(GetLine *gl, void *data)
701 int gl_inactivity_timeout(GetLine *gl, GlTimeoutFn *timeout_fn, void *data,
720 int gl_group_history(GetLine *gl, unsigned id);
751 int gl_show_history(GetLine *gl, FILE *fp, const char *fmt, int all_groups,
767 int gl_resize_history(GetLine *gl, size_t bufsize);
779 void gl_limit_history(GetLine *gl, int max_lines);
791 void gl_clear_history(GetLine *gl, int all_groups);
801 void gl_toggle_history(GetLine *gl, int enable);
823 GlTerminalSize gl_terminal_size(GetLine *gl, int def_ncolumn, int def_nline);
838 int gl_set_term_size(GetLine *gl, int ncolumn, int nline);
879 int gl_lookup_history(GetLine *gl, unsigned long id, GlHistoryLine *line);
902 void gl_state_of_history(GetLine *gl, GlHistoryState *state);
925 void gl_range_of_history(GetLine *gl, GlHistoryRange *range);
947 void gl_size_of_history(GetLine *gl, GlHistorySize *size);
966 int gl_automatic_history(GetLine *gl, int enable);
978 int gl_append_history(GetLine *gl, const char *line);
996 int gl_echo_mode(GetLine *gl, int enable);
1007 void gl_replace_prompt(GetLine *gl, const char *prompt);
1037 void gl_prompt_style(GetLine *gl, GlPromptStyle style);
1049 int gl_ignore_signal(GetLine *gl, int signo);
1104 int gl_trap_signal(GetLine *gl, int signo, unsigned flags,
1124 void gl_catch_blocked(GetLine *gl);
1177 int gl_last_signal(GetLine *gl);
1196 int gl_list_signals(GetLine *gl, sigset_t *set);
1228 void gl_handle_signal(int signo, GetLine *gl, int ngl);
1254 const char *gl_error_message(GetLine *gl, char *buff, size_t n);
1267 int gl_erase_terminal(GetLine *gl);
1323 int gl_display_text(GetLine *gl, int indentation, const char *prefix,
1351 int gl_io_mode(GetLine *gl, GlIOMode mode);
1371 int gl_raw_io(GetLine *gl);
1386 int gl_normal_io(GetLine *gl);
1399 void gl_abandon_line(GetLine *gl);
1427 GlReturnStatus gl_return_status(GetLine *gl);
1449 GlPendingIO gl_pending_io(GetLine *gl);
1496 #define GL_ACTION_FN(fn) GlAfterAction (fn)(GetLine *gl, void *data, \
1527 int gl_register_action(GetLine *gl, void *data, GlActionFn *fn,