Searched refs:safe_string (Results 1 – 1 of 1) sorted by relevance
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | monitor.c | 243 char *safe_string = alloca ((real_len * 4) + 1); in monitor_error() local 244 monitor_printable_string (safe_string, string, real_len); in monitor_error() 247 error ("%s (0x%s): %s: %s%c", function, paddr_nz (memaddr), message, safe_string, final_char); in monitor_error() 249 error ("%s (0x%s): %s: %s", function, paddr_nz (memaddr), message, safe_string); in monitor_error() 352 char *safe_string = (char *) alloca ((strlen (sndbuf) * 4) + 1); in monitor_printf_noecho() local 353 monitor_printable_string (safe_string, sndbuf, 0); in monitor_printf_noecho() 354 fprintf_unfiltered (gdb_stdlog, "sent[%s]\n", safe_string); in monitor_printf_noecho() 380 char *safe_string = (char *) alloca ((len * 4) + 1); in monitor_printf() local 381 monitor_printable_string (safe_string, sndbuf, 0); in monitor_printf() 382 fprintf_unfiltered (gdb_stdlog, "sent[%s]\n", safe_string); in monitor_printf() [all …]
|