Lines Matching full:output

1 /* Command-line output logging for GDB, the GNU debugger.
28 /* These hold the pushed copies of the gdb output files.
43 /* If we've pushed output files, close them and pop them. */
66 struct ui_file *output; in handle_redirections() local
75 output = gdb_fopen (logging_filename, logging_overwrite ? "w" : "a"); in handle_redirections()
76 if (output == NULL) in handle_redirections()
82 output = tee_file_new (gdb_stdout, 0, output, 1); in handle_redirections()
83 if (output == NULL) in handle_redirections()
86 fprintf_unfiltered (gdb_stdout, "Copying output to %s.\n", in handle_redirections()
90 fprintf_unfiltered (gdb_stdout, "Redirecting output to %s.\n", in handle_redirections()
99 gdb_stdout = output; in handle_redirections()
100 gdb_stderr = output; in handle_redirections()
101 gdb_stdlog = output; in handle_redirections()
102 gdb_stdtarg = output; in handle_redirections()
105 warning ("Current output protocol does not support redirection"); in handle_redirections()
136 printf_unfiltered ("\"set logging\" lets you log output to a file.\n"); in set_logging_command()
160 printf_unfiltered ("Output will be sent only to the log file.\n"); in show_logging_command()
162 printf_unfiltered ("Output will be logged and displayed.\n"); in show_logging_command()
184 Set the logging output mode.", "\ in _initialize_cli_logging()
185 Show the logging output mode.", "\ in _initialize_cli_logging()
186 If redirect is off, output will go to both the screen and the log file.\n\ in _initialize_cli_logging()
187 If redirect is on, output will go only to the log file.", "\ in _initialize_cli_logging()
188 The logging output mode is %s.", in _initialize_cli_logging()
193 The logfile is used when directing GDB's output.", "\ in _initialize_cli_logging()