Searched refs:linebuffer (Results 1 – 6 of 6) sorted by relevance
| /dflybsd-src/contrib/gdb-7/gdb/ |
| H A D | event-top.c | 147 char *linebuffer; member 451 static char *linebuffer = 0; in command_line_handler() local 465 if (linebuffer == 0) in command_line_handler() 468 linebuffer = (char *) xmalloc (linelength); in command_line_handler() 471 p = linebuffer; in command_line_handler() 475 strcpy (linebuffer, readline_input_state.linebuffer); in command_line_handler() 477 xfree (readline_input_state.linebuffer); in command_line_handler() 503 if (strlen (rl) + 1 + (p - linebuffer) > linelength) in command_line_handler() 505 linelength = strlen (rl) + 1 + (p - linebuffer); in command_line_handler() 506 nline = (char *) xrealloc (linebuffer, linelength); in command_line_handler() [all …]
|
| H A D | top.c | 911 static char *linebuffer = 0; in command_line_input() local 937 if (linebuffer == 0) in command_line_input() 940 linebuffer = (char *) xmalloc (linelength); in command_line_input() 943 p = linebuffer; in command_line_input() 999 if (strlen (rl) + 1 + (p - linebuffer) > linelength) in command_line_input() 1001 linelength = strlen (rl) + 1 + (p - linebuffer); in command_line_input() 1002 nline = (char *) xrealloc (linebuffer, linelength); in command_line_input() 1003 p += nline - linebuffer; in command_line_input() 1004 linebuffer = nline; in command_line_input() 1014 if (p == linebuffer || *(p - 1) != '\\') in command_line_input() [all …]
|
| H A D | utils.c | 2075 fputs_maybe_filtered (const char *linebuffer, struct ui_file *stream, in fputs_maybe_filtered() argument 2080 if (linebuffer == 0) in fputs_maybe_filtered() 2091 fputs_unfiltered (linebuffer, stream); in fputs_maybe_filtered() 2099 lineptr = linebuffer; in fputs_maybe_filtered() 2181 fputs_filtered (const char *linebuffer, struct ui_file *stream) in fputs_filtered() argument 2183 fputs_maybe_filtered (linebuffer, stream, 1); in fputs_filtered() 2327 char *linebuffer; in vfprintf_maybe_filtered() local 2330 linebuffer = xstrvprintf (format, args); in vfprintf_maybe_filtered() 2331 old_cleanups = make_cleanup (xfree, linebuffer); in vfprintf_maybe_filtered() 2332 fputs_maybe_filtered (linebuffer, stream, filter); in vfprintf_maybe_filtered() [all …]
|
| H A D | ui-file.c | 619 stdio_file_fputs (const char *linebuffer, struct ui_file *file) in stdio_file_fputs() argument 627 if (fputs (linebuffer, stdio->file)) in stdio_file_fputs() 752 tee_file_fputs (const char *linebuffer, struct ui_file *file) in tee_file_fputs() argument 759 tee->one->to_fputs (linebuffer, tee->one); in tee_file_fputs() 760 tee->two->to_fputs (linebuffer, tee->two); in tee_file_fputs()
|
| /dflybsd-src/contrib/gdb-7/gdb/tui/ |
| H A D | tui-file.c | 172 tui_file_fputs (const char *linebuffer, struct ui_file *file) in tui_file_fputs() argument 178 tui_file_adjust_strbuf (strlen (linebuffer), file); in tui_file_fputs() 179 strcat (stream->ts_strbuf, linebuffer); in tui_file_fputs() 183 tui_puts (linebuffer); in tui_file_fputs()
|
| /dflybsd-src/libexec/dma/ |
| H A D | net.c | 395 char linebuffer[EHLO_RESPONSE_SIZE]; in perform_server_greeting() local 399 char* line = linebuffer; in perform_server_greeting() 417 line = linebuffer; in perform_server_greeting()
|