Lines Matching refs:gl
94 GetLine *del_GetLine(GetLine *gl);
99 char *gl_get_line(GetLine *gl, const char *prompt, const char *start_line,
117 int gl_query_char(GetLine *gl, const char *prompt, char defchar);
131 int gl_read_char(GetLine *gl);
137 int gl_configure_getline(GetLine *gl, const char *app_string,
154 int gl_bind_keyseq(GetLine *gl, GlKeyOrigin origin, const char *keyseq,
462 int gl_customize_completion(GetLine *gl, void *data, CplMatchFn *match_fn);
495 int gl_completion_action(GetLine *gl, void *data, CplMatchFn *match_fn,
514 int gl_change_terminal(GetLine *gl, FILE *input_fp, FILE *output_fp,
538 int gl_save_history(GetLine *gl, const char *filename, const char *comment,
540 int gl_load_history(GetLine *gl, const char *filename, const char *comment);
590 #define GL_FD_EVENT_FN(fn) GlFdStatus (fn)(GetLine *gl, void *data, int fd, \
616 int gl_watch_fd(GetLine *gl, int fd, GlFdEvent event,
658 #define GL_TIMEOUT_FN(fn) GlAfterTimeout (fn)(GetLine *gl, void *data)
699 int gl_inactivity_timeout(GetLine *gl, GlTimeoutFn *timeout_fn, void *data,
718 int gl_group_history(GetLine *gl, unsigned id);
749 int gl_show_history(GetLine *gl, FILE *fp, const char *fmt, int all_groups,
765 int gl_resize_history(GetLine *gl, size_t bufsize);
777 void gl_limit_history(GetLine *gl, int max_lines);
789 void gl_clear_history(GetLine *gl, int all_groups);
799 void gl_toggle_history(GetLine *gl, int enable);
821 GlTerminalSize gl_terminal_size(GetLine *gl, int def_ncolumn, int def_nline);
836 int gl_set_term_size(GetLine *gl, int ncolumn, int nline);
877 int gl_lookup_history(GetLine *gl, unsigned long id, GlHistoryLine *line);
900 void gl_state_of_history(GetLine *gl, GlHistoryState *state);
923 void gl_range_of_history(GetLine *gl, GlHistoryRange *range);
945 void gl_size_of_history(GetLine *gl, GlHistorySize *size);
964 int gl_automatic_history(GetLine *gl, int enable);
976 int gl_append_history(GetLine *gl, const char *line);
994 int gl_echo_mode(GetLine *gl, int enable);
1005 void gl_replace_prompt(GetLine *gl, const char *prompt);
1035 void gl_prompt_style(GetLine *gl, GlPromptStyle style);
1047 int gl_ignore_signal(GetLine *gl, int signo);
1102 int gl_trap_signal(GetLine *gl, int signo, unsigned flags,
1122 void gl_catch_blocked(GetLine *gl);
1175 int gl_last_signal(GetLine *gl);
1194 int gl_list_signals(GetLine *gl, sigset_t *set);
1226 void gl_handle_signal(int signo, GetLine *gl, int ngl);
1252 const char *gl_error_message(GetLine *gl, char *buff, size_t n);
1265 int gl_erase_terminal(GetLine *gl);
1321 int gl_display_text(GetLine *gl, int indentation, const char *prefix,
1349 int gl_io_mode(GetLine *gl, GlIOMode mode);
1369 int gl_raw_io(GetLine *gl);
1384 int gl_normal_io(GetLine *gl);
1397 void gl_abandon_line(GetLine *gl);
1425 GlReturnStatus gl_return_status(GetLine *gl);
1447 GlPendingIO gl_pending_io(GetLine *gl);
1494 #define GL_ACTION_FN(fn) GlAfterAction (fn)(GetLine *gl, void *data, \
1525 int gl_register_action(GetLine *gl, void *data, GlActionFn *fn,