Searched refs:tmp_stream (Results 1 – 4 of 4) sorted by relevance
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | corefile.c | 211 struct ui_file *tmp_stream = mem_fileopen (); in memory_error() local 212 make_cleanup_ui_file_delete (tmp_stream); in memory_error() 218 fprintf_unfiltered (tmp_stream, "Cannot access memory at address "); in memory_error() 219 print_address_numeric (memaddr, 1, tmp_stream); in memory_error() 223 fprintf_filtered (tmp_stream, "Error accessing memory address "); in memory_error() 224 print_address_numeric (memaddr, 1, tmp_stream); in memory_error() 225 fprintf_filtered (tmp_stream, ": %s.", in memory_error() 229 error_stream (tmp_stream); in memory_error()
|
H A D | linespec.c | 147 struct ui_file *tmp_stream; in cplusplus_error() local 148 tmp_stream = mem_fileopen (); in cplusplus_error() 149 make_cleanup_ui_file_delete (tmp_stream); in cplusplus_error() 154 vfprintf_unfiltered (tmp_stream, fmt, args); in cplusplus_error() 160 fprintf_unfiltered (tmp_stream, in cplusplus_error() 164 error_stream (tmp_stream); in cplusplus_error()
|
H A D | utils.c | 620 struct ui_file *tmp_stream = mem_fileopen (); in verror() local 621 make_cleanup_ui_file_delete (tmp_stream); in verror() 622 vfprintf_unfiltered (tmp_stream, string, args); in verror() 623 error_stream (tmp_stream); in verror() 647 struct ui_file *tmp_stream = mem_fileopen (); in error_silent() local 649 make_cleanup_ui_file_delete (tmp_stream); in error_silent() 650 vfprintf_unfiltered (tmp_stream, string, args); in error_silent() 653 ui_file_put (tmp_stream, do_write, gdb_lasterr); in error_silent()
|
H A D | ada-valprint.c | 306 struct ui_file *tmp_stream = mem_fileopen (); in ada_print_floating() local 307 struct cleanup *cleanups = make_cleanup_ui_file_delete (tmp_stream); in ada_print_floating() 309 print_floating (valaddr, type, tmp_stream); in ada_print_floating() 310 ui_file_put (tmp_stream, ui_memcpy, buffer); in ada_print_floating()
|