Lines Matching refs:gl

96 GetLine *del_GetLine(GetLine *gl);
99 * Read a line into an internal buffer of gl.
101 char *gl_get_line(GetLine *gl, const char *prompt, const char *start_line,
108 * gl GetLine * A resource object returned by new_GetLine().
119 int gl_query_char(GetLine *gl, const char *prompt, char defchar);
126 * gl GetLine * A resource object previously returned by
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,
451 * gl GetLine * The resource object of the command-line input
464 int gl_customize_completion(GetLine *gl, void *data, CplMatchFn *match_fn);
475 * gl GetLine * The resource object of the command-line input
497 int gl_completion_action(GetLine *gl, void *data, CplMatchFn *match_fn,
504 * gl GetLine * The resource object of the command-line input
516 int gl_change_terminal(GetLine *gl, FILE *input_fp, FILE *output_fp,
524 * gl GetLine * The resource object of the command-line input
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);
572 * gl GetLine * The gl_get_line() resource object. You can use
575 * functions that take a gl argument is undefined,
592 #define GL_FD_EVENT_FN(fn) GlFdStatus (fn)(GetLine *gl, void *data, int fd, \
601 * gl GetLine * The resource object of the command-line input
612 * 1 - Either gl==NULL, or this facility isn't
618 int gl_watch_fd(GetLine *gl, int fd, GlFdEvent event,
640 * gl GetLine * The gl_get_line() resource object. You can use
643 * functions that take a gl argument is undefined,
660 #define GL_TIMEOUT_FN(fn) GlAfterTimeout (fn)(GetLine *gl, void *data)
682 * gl GetLine * The resource object of the command-line input
695 * 1 - Either gl==NULL, or this facility isn't
701 int gl_inactivity_timeout(GetLine *gl, GlTimeoutFn *timeout_fn, void *data,
714 * gl GetLine * The resource object of gl_get_line().
720 int gl_group_history(GetLine *gl, unsigned id);
726 * gl GetLine * The resource object of gl_get_line().
751 int gl_show_history(GetLine *gl, FILE *fp, const char *fmt, int all_groups,
758 * gl GetLine * The resource object of gl_get_line().
767 int gl_resize_history(GetLine *gl, size_t bufsize);
774 * gl GetLine * The resource object of gl_get_line().
779 void gl_limit_history(GetLine *gl, int max_lines);
786 * gl GetLine * The resource object of gl_get_line().
791 void gl_clear_history(GetLine *gl, int all_groups);
797 * gl GetLine * The resource object of gl_get_line().
801 void gl_toggle_history(GetLine *gl, int enable);
815 * gl GetLine * The resource object of gl_get_line().
823 GlTerminalSize gl_terminal_size(GetLine *gl, int def_ncolumn, int def_nline);
831 * gl GetLine * The resource object of gl_get_line().
838 int gl_set_term_size(GetLine *gl, int ncolumn, int nline);
857 * gl GetLine * The resource object of gl_get_line().
877 * functions that take gl as an argument.
879 int gl_lookup_history(GetLine *gl, unsigned long id, GlHistoryLine *line);
897 * gl GetLine * The resource object of gl_get_line().
902 void gl_state_of_history(GetLine *gl, GlHistoryState *state);
920 * gl GetLine * The resource object of gl_get_line().
925 void gl_range_of_history(GetLine *gl, GlHistoryRange *range);
942 * gl GetLine * The resource object of gl_get_line().
947 void gl_size_of_history(GetLine *gl, GlHistorySize *size);
954 * gl GetLine * The resource object of gl_get_line().
966 int gl_automatic_history(GetLine *gl, int enable);
972 * gl GetLine * The resource object of gl_get_line().
978 int gl_append_history(GetLine *gl, const char *line);
986 * gl GetLine * The input-line history maintenance object.
996 int gl_echo_mode(GetLine *gl, int enable);
1004 * gl GetLine * The resource object of gl_get_line().
1007 void gl_replace_prompt(GetLine *gl, const char *prompt);
1033 * gl GetLine * The resource object of gl_get_line().
1037 void gl_prompt_style(GetLine *gl, GlPromptStyle style);
1043 * gl GetLine * The resource object of gl_get_line().
1049 int gl_ignore_signal(GetLine *gl, int signo);
1093 * gl GetLine * The resource object of gl_get_line().
1104 int gl_trap_signal(GetLine *gl, int signo, unsigned flags,
1122 * gl GetLine * The resource object of gl_get_line().
1124 void gl_catch_blocked(GetLine *gl);
1171 * gl GetLine * The resource object of gl_get_line().
1177 int gl_last_signal(GetLine *gl);
1184 * gl GetLine * The resource object of gl_get_line().
1196 int gl_list_signals(GetLine *gl, sigset_t *set);
1223 * gl GetLine * The first element of an array of 'ngl' GetLine
1225 * ngl int The number of elements in the gl[] array. Normally
1228 void gl_handle_signal(int signo, GetLine *gl, int ngl);
1236 * gl GetLine * The resource object of gl_get_line().
1254 const char *gl_error_message(GetLine *gl, char *buff, size_t n);
1262 * gl GetLine * The resource object of gl_get_line().
1267 int gl_erase_terminal(GetLine *gl);
1286 * gl GetLine * The resource object of gl_get_line().
1323 int gl_display_text(GetLine *gl, int indentation, const char *prefix,
1342 * gl GetLine * The resource object of gl_get_line().
1351 int gl_io_mode(GetLine *gl, GlIOMode mode);
1366 * gl GetLine * The line editor resource object.
1371 int gl_raw_io(GetLine *gl);
1381 * gl GetLine * The line editor resource object.
1386 int gl_normal_io(GetLine *gl);
1394 * gl GetLine * The line editor resource object.
1399 void gl_abandon_line(GetLine *gl);
1422 * gl GetLine * The line editor resource object.
1427 GlReturnStatus gl_return_status(GetLine *gl);
1445 * gl GetLine * The resource object of gl_get_line().
1449 GlPendingIO gl_pending_io(GetLine *gl);
1469 * gl GetLine * The line editor resource object.
1496 #define GL_ACTION_FN(fn) GlAfterAction (fn)(GetLine *gl, void *data, \
1508 * gl GetLine * The resource object of the command-line input
1527 int gl_register_action(GetLine *gl, void *data, GlActionFn *fn,