taglinefilesource code
rows121drivers/char/console.cstatic void con_setsize(unsigned long rows, unsigned long cols);
rows122drivers/char/console.cstatic void vc_init(unsigned int console, unsigned long rows,
rows1910drivers/char/console.cstatic void vc_init(unsigned int currcons, unsigned long rows, unsigned long cols, int do_clear)
rows1916drivers/char/console.cvideo_num_lines = rows;
rows1936drivers/char/console.cstatic void con_setsize(unsigned long rows, unsigned long cols)
rows1938drivers/char/console.cvideo_num_lines = rows;
rows461drivers/char/vga.cint rows, maxscan;
rows473drivers/char/vga.crows = video_scan_lines/fontheight;  /* Number of video rows we end up with */
rows474drivers/char/vga.cmaxscan = rows*fontheight - 1;    /* Scan lines to actually display-1 */
rows518drivers/char/vga.cif ( rows == video_num_lines ) {
rows524drivers/char/vga.cvc_resize(rows, 0);      /* Adjust console size */
rows526drivers/char/vga.creturn rows;
rows126init/main.cint rows, cols;