Home
last modified time | relevance | path

Searched refs:ReadLineState (Results 1 – 3 of 3) sorted by relevance

/external/qemu/
Dreadline.h13 typedef struct ReadLineState { struct
38 } ReadLineState; argument
40 void readline_add_completion(ReadLineState *rs, const char *str);
41 void readline_set_completion_index(ReadLineState *rs, int completion_index);
43 const char *readline_get_history(ReadLineState *rs, unsigned int index);
45 void readline_handle_byte(ReadLineState *rs, int ch);
47 void readline_start(ReadLineState *rs, const char *prompt, int read_password,
49 void readline_restart(ReadLineState *rs);
50 void readline_show_prompt(ReadLineState *rs);
52 ReadLineState *readline_init(Monitor *mon,
Dreadline.c34 void readline_show_prompt(ReadLineState *rs) in readline_show_prompt()
44 static void readline_update(ReadLineState *rs) in readline_update()
83 static void readline_insert_char(ReadLineState *rs, int ch) in readline_insert_char()
95 static void readline_backward_char(ReadLineState *rs) in readline_backward_char()
102 static void readline_forward_char(ReadLineState *rs) in readline_forward_char()
109 static void readline_delete_char(ReadLineState *rs) in readline_delete_char()
119 static void readline_backspace(ReadLineState *rs) in readline_backspace()
127 static void readline_backword(ReadLineState *rs) in readline_backword()
166 static void readline_bol(ReadLineState *rs) in readline_bol()
171 static void readline_eol(ReadLineState *rs) in readline_eol()
[all …]
Dmonitor.c79 ReadLineState *rs;