taglinefilesource code
rows118drivers/char/console.cstatic void con_setsize(unsigned long rows, unsigned long cols);
rows119drivers/char/console.cstatic void vc_init(unsigned int console, unsigned long rows,
rows1897drivers/char/console.cstatic void vc_init(unsigned int currcons, unsigned long rows, unsigned long cols, int do_clear)
rows1903drivers/char/console.cvideo_num_lines = rows;
rows1923drivers/char/console.cstatic void con_setsize(unsigned long rows, unsigned long cols)
rows1925drivers/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;
rows119init/main.cint rows, cols;