Searched refs:linelength (Results 1 – 2 of 2) sorted by relevance
452 static unsigned linelength = 0; in command_line_handler() local467 linelength = 80; in command_line_handler()468 linebuffer = (char *) xmalloc (linelength); 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()574 if (strlen (history_value) > linelength) in command_line_handler()576 linelength = strlen (history_value) + 1; in command_line_handler()577 linebuffer = (char *) xrealloc (linebuffer, linelength); in command_line_handler()621 if (linelength > saved_command_line_size) in command_line_handler()[all …]
912 static unsigned linelength = 0; in command_line_input() local939 linelength = 80; in command_line_input()940 linebuffer = (char *) xmalloc (linelength); 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()1064 if (strlen (history_value) > linelength) in command_line_input()1066 linelength = strlen (history_value) + 1; in command_line_input()1067 linebuffer = (char *) xrealloc (linebuffer, linelength); in command_line_input()1102 if (linelength > saved_command_line_size) in command_line_input()[all …]