Lines Matching refs:uiout

36 extern struct ui_out *uiout;
61 struct ui_out *uiout; member
77 extern void ui_out_begin (struct ui_out *uiout,
81 extern void ui_out_end (struct ui_out *uiout, enum ui_out_type type);
83 extern struct cleanup *ui_out_begin_cleanup_end (struct ui_out *uiout,
91 extern void ui_out_table_header (struct ui_out *uiout, int width,
95 extern void ui_out_table_body (struct ui_out *uiout);
103 extern struct cleanup *make_cleanup_ui_out_list_begin_end (struct ui_out *uiout,
106 extern struct cleanup *make_cleanup_ui_out_tuple_begin_end (struct ui_out *uiout,
109 extern void ui_out_field_int (struct ui_out *uiout, const char *fldname,
112 extern void ui_out_field_fmt_int (struct ui_out *uiout, int width,
116 extern void ui_out_field_core_addr (struct ui_out *uiout, const char *fldname,
119 extern void ui_out_field_string (struct ui_out * uiout, const char *fldname,
122 extern void ui_out_field_stream (struct ui_out *uiout, const char *fldname,
125 extern void ui_out_field_fmt (struct ui_out *uiout, const char *fldname,
128 extern void ui_out_field_skip (struct ui_out *uiout, const char *fldname);
130 extern void ui_out_spaces (struct ui_out *uiout, int numspaces);
132 extern void ui_out_text (struct ui_out *uiout, const char *string);
134 extern void ui_out_message (struct ui_out *uiout, int verbosity,
137 extern struct ui_stream *ui_out_stream_new (struct ui_out *uiout);
143 extern void ui_out_wrap_hint (struct ui_out *uiout, char *identstring);
145 extern void ui_out_flush (struct ui_out *uiout);
147 extern void ui_out_get_field_separator (struct ui_out *uiout);
149 extern int ui_out_set_flags (struct ui_out *uiout, int mask);
151 extern int ui_out_clear_flags (struct ui_out *uiout, int mask);
153 extern int ui_out_get_verblvl (struct ui_out *uiout);
155 extern int ui_out_test_flags (struct ui_out *uiout, int mask);
158 extern void ui_out_result_begin (struct ui_out *uiout, char *class);
160 extern void ui_out_result_end (struct ui_out *uiout);
162 extern void ui_out_info_begin (struct ui_out *uiout, char *class);
164 extern void ui_out_info_end (struct ui_out *uiout);
166 extern void ui_out_notify_begin (struct ui_out *uiout, char *class);
168 extern void ui_out_notify_end (struct ui_out *uiout);
170 extern void ui_out_error_begin (struct ui_out *uiout, char *class);
172 extern void ui_out_error_end (struct ui_out *uiout);
176 extern void gdb_error (struct ui_out *uiout, int severity, char *format, ...);
178 extern void gdb_query (struct ui_out *uiout, int qflags, char *qprompt);
186 extern int ui_out_is_mi_like_p (struct ui_out *uiout);
196 typedef void (table_begin_ftype) (struct ui_out * uiout,
199 typedef void (table_body_ftype) (struct ui_out * uiout);
200 typedef void (table_end_ftype) (struct ui_out * uiout);
201 typedef void (table_header_ftype) (struct ui_out * uiout, int width,
206 typedef void (ui_out_begin_ftype) (struct ui_out *uiout,
209 typedef void (ui_out_end_ftype) (struct ui_out *uiout,
212 typedef void (field_int_ftype) (struct ui_out * uiout, int fldno, int width,
215 typedef void (field_skip_ftype) (struct ui_out * uiout, int fldno, int width,
218 typedef void (field_string_ftype) (struct ui_out * uiout, int fldno, int width,
222 typedef void (field_fmt_ftype) (struct ui_out * uiout, int fldno, int width,
227 typedef void (spaces_ftype) (struct ui_out * uiout, int numspaces);
228 typedef void (text_ftype) (struct ui_out * uiout,
230 typedef void (message_ftype) (struct ui_out * uiout, int verbosity,
232 typedef void (wrap_hint_ftype) (struct ui_out * uiout, char *identstring);
233 typedef void (flush_ftype) (struct ui_out * uiout);
234 typedef int (redirect_ftype) (struct ui_out * uiout,
263 extern struct ui_out_data *ui_out_data (struct ui_out *uiout);
274 extern int ui_out_redirect (struct ui_out *uiout, struct ui_file *outstream);