IOSS 2.0
|
Functions | |
void | gl_init () |
void | gl_cleanup () |
void | gl_char_init () |
void | gl_char_cleanup () |
void | gl_addchar (int c) |
void | gl_del (int loc, int) |
void | gl_error (const char *const buf) |
void | gl_fixup (const char *prompt, int change, int cursor) |
int | gl_getc () |
void | gl_kill (int pos) |
void | gl_newline () |
void | gl_putc (int c) |
void | gl_puts (const char *const buf) |
void | gl_redraw () |
void | gl_transpose () |
void | gl_yank () |
void | hist_init () |
char * | hist_next () |
char * | hist_prev () |
char * | hist_save (const char *p) |
void | search_addchar (int c) |
void | search_term () |
void | search_back (int new_search) |
void | search_forw (int new_search) |
void | gl_beep () |
char * | copy_string (char *dest, char const *source, long int elements) |
void | search_update (int c) |
Variables | |
const int | GL_BUF_SIZE {1024} |
bool | gl_ellipses_during_completion = true |
char | gl_buf [GL_BUF_SIZE] |
int | gl_init_done = -1 |
int | gl_termw = 80 |
int | gl_scroll = 27 |
int | gl_width = 0 |
int | gl_extent = 0 |
int | gl_overwrite = 0 |
int | gl_pos |
int | gl_cnt = 0 |
char | gl_killbuf [GL_BUF_SIZE] = "" |
const char * | gl_prompt |
int | gl_search_mode = 0 |
struct termios | io_new_termios |
struct termios | io_old_termios |
int | hist_pos = 0 |
int | hist_last = 0 |
std::array< char *, HIST_SIZE > | hist_buf |
char | hist_empty_elem [2] = "" |
char | search_prompt [101] |
char | search_string [100] |
int | search_pos = 0 |
int | search_forw_flg = 0 |
int | search_last = 0 |
char * anonymous_namespace{Ioss_Getline.C}::copy_string | ( | char * | dest, |
char const * | source, | ||
long int | elements ) |
void anonymous_namespace{Ioss_Getline.C}::gl_addchar | ( | int | c | ) |
void anonymous_namespace{Ioss_Getline.C}::gl_beep | ( | ) |
void anonymous_namespace{Ioss_Getline.C}::gl_char_cleanup | ( | ) |
void anonymous_namespace{Ioss_Getline.C}::gl_char_init | ( | ) |
void anonymous_namespace{Ioss_Getline.C}::gl_cleanup | ( | ) |
void anonymous_namespace{Ioss_Getline.C}::gl_del | ( | int | loc, |
int | killsave ) |
void anonymous_namespace{Ioss_Getline.C}::gl_error | ( | const char *const | buf | ) |
void anonymous_namespace{Ioss_Getline.C}::gl_fixup | ( | const char * | prompt, |
int | change, | ||
int | cursor ) |
int anonymous_namespace{Ioss_Getline.C}::gl_getc | ( | ) |
void anonymous_namespace{Ioss_Getline.C}::gl_init | ( | ) |
void anonymous_namespace{Ioss_Getline.C}::gl_kill | ( | int | pos | ) |
void anonymous_namespace{Ioss_Getline.C}::gl_newline | ( | ) |
void anonymous_namespace{Ioss_Getline.C}::gl_putc | ( | int | c | ) |
void anonymous_namespace{Ioss_Getline.C}::gl_puts | ( | const char *const | buf | ) |
void anonymous_namespace{Ioss_Getline.C}::gl_redraw | ( | ) |
void anonymous_namespace{Ioss_Getline.C}::gl_transpose | ( | ) |
void anonymous_namespace{Ioss_Getline.C}::gl_yank | ( | ) |
void anonymous_namespace{Ioss_Getline.C}::hist_init | ( | ) |
char * anonymous_namespace{Ioss_Getline.C}::hist_next | ( | ) |
char * anonymous_namespace{Ioss_Getline.C}::hist_prev | ( | ) |
char * anonymous_namespace{Ioss_Getline.C}::hist_save | ( | const char * | p | ) |
void anonymous_namespace{Ioss_Getline.C}::search_addchar | ( | int | c | ) |
void anonymous_namespace{Ioss_Getline.C}::search_back | ( | int | new_search | ) |
void anonymous_namespace{Ioss_Getline.C}::search_forw | ( | int | new_search | ) |
void anonymous_namespace{Ioss_Getline.C}::search_term | ( | ) |
void anonymous_namespace{Ioss_Getline.C}::search_update | ( | int | c | ) |
char anonymous_namespace{Ioss_Getline.C}::gl_buf[GL_BUF_SIZE] |
const int anonymous_namespace{Ioss_Getline.C}::GL_BUF_SIZE {1024} |
int anonymous_namespace{Ioss_Getline.C}::gl_cnt = 0 |
bool anonymous_namespace{Ioss_Getline.C}::gl_ellipses_during_completion = true |
int anonymous_namespace{Ioss_Getline.C}::gl_extent = 0 |
int anonymous_namespace{Ioss_Getline.C}::gl_init_done = -1 |
char anonymous_namespace{Ioss_Getline.C}::gl_killbuf[GL_BUF_SIZE] = "" |
int anonymous_namespace{Ioss_Getline.C}::gl_overwrite = 0 |
int anonymous_namespace{Ioss_Getline.C}::gl_pos |
const char* anonymous_namespace{Ioss_Getline.C}::gl_prompt |
int anonymous_namespace{Ioss_Getline.C}::gl_scroll = 27 |
int anonymous_namespace{Ioss_Getline.C}::gl_search_mode = 0 |
int anonymous_namespace{Ioss_Getline.C}::gl_termw = 80 |
int anonymous_namespace{Ioss_Getline.C}::gl_width = 0 |
std::array<char *, HIST_SIZE> anonymous_namespace{Ioss_Getline.C}::hist_buf |
char anonymous_namespace{Ioss_Getline.C}::hist_empty_elem[2] = "" |
int anonymous_namespace{Ioss_Getline.C}::hist_last = 0 |
int anonymous_namespace{Ioss_Getline.C}::hist_pos = 0 |
struct termios anonymous_namespace{Ioss_Getline.C}::io_new_termios |
struct termios anonymous_namespace{Ioss_Getline.C}::io_old_termios |
int anonymous_namespace{Ioss_Getline.C}::search_forw_flg = 0 |
int anonymous_namespace{Ioss_Getline.C}::search_last = 0 |
int anonymous_namespace{Ioss_Getline.C}::search_pos = 0 |
char anonymous_namespace{Ioss_Getline.C}::search_prompt[101] |
char anonymous_namespace{Ioss_Getline.C}::search_string[100] |