Lines Matching refs:linelength
854 static unsigned linelength = 0; in command_line_input() local
881 linelength = 80; in command_line_input()
882 linebuffer = (char *) xmalloc (linelength); in command_line_input()
939 if (strlen (rl) + 1 + (p - linebuffer) > linelength) in command_line_input()
941 linelength = strlen (rl) + 1 + (p - linebuffer); in command_line_input()
942 nline = (char *) xrealloc (linebuffer, linelength); in command_line_input()
1003 if (strlen (history_value) > linelength) in command_line_input()
1005 linelength = strlen (history_value) + 1; in command_line_input()
1006 linebuffer = (char *) xrealloc (linebuffer, linelength); in command_line_input()
1042 if (linelength > linesize) in command_line_input()
1044 line = xrealloc (line, linelength); in command_line_input()
1045 linesize = linelength; in command_line_input()