Lines Matching refs:uiout
280 /* Prints the list of program spaces and their details on UIOUT. If
285 print_program_space (struct ui_out *uiout, int requested)
308 ui_out_emit_table table_emitter (uiout, 4, count, "pspaces");
309 uiout->table_header (1, ui_left, "current", "");
310 uiout->table_header (4, ui_left, "id", "Id");
311 uiout->table_header (longest_exec_name, ui_left, "exec", "Executable");
312 uiout->table_header (17, ui_left, "core", "Core File");
313 uiout->table_body ();
322 ui_out_emit_tuple tuple_emitter (uiout, NULL);
325 uiout->field_string ("current", "*");
327 uiout->field_skip ("current");
329 uiout->field_signed ("id", pspace->num);
332 uiout->field_string ("exec", pspace->exec_filename (),
335 uiout->field_skip ("exec");
338 uiout->field_string ("core", bfd_get_filename (pspace->cbfd.get ()),
341 uiout->field_skip ("core");
372 uiout->text ("\n");