Lines Matching defs:output

163 /* Default input and output radixes, and output format letter.  */
181 _("Default output radix for printing of values is %s.\n"),
2061 struct obstack *output)
2066 obstack_grow (output, &w, sizeof (gdb_wchar_t));
2083 struct obstack *output,
2095 obstack_grow_wstr (output, LCST ("\\a"));
2098 obstack_grow_wstr (output, LCST ("\\b"));
2101 obstack_grow_wstr (output, LCST ("\\f"));
2104 obstack_grow_wstr (output, LCST ("\\n"));
2107 obstack_grow_wstr (output, LCST ("\\r"));
2110 obstack_grow_wstr (output, LCST ("\\t"));
2113 obstack_grow_wstr (output, LCST ("\\v"));
2122 obstack_grow_wstr (output, LCST ("\\"));
2123 obstack_grow (output, &wchar, sizeof (gdb_wchar_t));
2152 append_string_as_wide (octal, output);
2161 append_string_as_wide (octal, output);
2235 /* The output in the host encoding. */
2236 auto_obstack output;
2241 sizeof (gdb_wchar_t), &output, translit_char);
2242 obstack_1grow (&output, '\0');
2244 gdb_puts ((const char *) obstack_base (&output), stream);
2331 character to use with string output. WIDTH is the size of the output
2371 must output and a comma and a quote. */
2441 /* We do not attempt to output anything after this. */
2571 /* Print the output string to the obstack. */
2579 auto_obstack output;
2584 sizeof (gdb_wchar_t), &output, translit_char);
2585 obstack_1grow (&output, '\0');
2587 gdb_puts ((const char *) obstack_base (&output), stream);
2698 /* Validate an input or output radix setting, and make sure the user
2733 /* The 'set output-radix' command writes to this auxiliary variable.
2763 error (_("Unsupported output radix ``decimal %u''; "
2764 "output radix unchanged."),
2776 /* Set both the input and output radix at once. Try to set the output radix
2778 an output radix is also valid as an input radix.
2781 set an input radix that is not valid as an output radix, he needs to use
2794 gdb_printf (_("Input and output radices now set to "
2800 /* Show both the input and output radices. */
2809 gdb_printf (_("Input and output radices set to "
3101 add_setshow_zuinteger_cmd ("output-radix", class_support, &output_radix_1,
3103 Set default output radix for printing of values."), _("\
3104 Show default output radix for printing of values."), NULL,
3117 Set default input and output number radices.\n\
3118 Use 'set input-radix' or 'set output-radix' to independently set each.\n\
3122 Show the default input and output number radices.\n\
3123 Use 'show input-radix' or 'show output-radix' to independently show each."),