Lines Matching refs:uiout
71 /* Prints the list of target connections and their details on UIOUT.
78 print_connection (struct ui_out *uiout, const char *requested_connections)
100 uiout->message (_("No connections.\n"));
104 ui_out_emit_table table_emitter (uiout, 4, process_targets.size (),
107 uiout->table_header (1, ui_left, "current", "");
108 uiout->table_header (4, ui_left, "number", "Num");
115 uiout->table_header (what_len + 1, ui_left, "what", "What");
116 uiout->table_header (17, ui_left, "description", "Description");
118 uiout->table_body ();
127 ui_out_emit_tuple tuple_emitter (uiout, NULL);
130 uiout->field_string ("current", "*");
132 uiout->field_skip ("current");
134 uiout->field_signed ("number", t->connection_number);
136 uiout->field_string ("what", make_target_connection_string (t));
138 uiout->field_string ("description", t->longname ());
140 uiout->text ("\n");