taglinefilesource code
rows129drivers/char/console.cstatic void con_setsize(unsigned long rows, unsigned long cols);
rows130drivers/char/console.cstatic void vc_init(unsigned int console, unsigned long rows,
rows1915drivers/char/console.cstatic void vc_init(unsigned int currcons, unsigned long rows, unsigned long cols, int do_clear)
rows1921drivers/char/console.cvideo_num_lines = rows;
rows1941drivers/char/console.cstatic void con_setsize(unsigned long rows, unsigned long cols)
rows1943drivers/char/console.cvideo_num_lines = rows;
rows464drivers/char/vga.cint rows, maxscan;
rows476drivers/char/vga.crows = video_scan_lines/fontheight;  /* Number of video rows we end up with */
rows477drivers/char/vga.cmaxscan = rows*fontheight - 1;    /* Scan lines to actually display-1 */
rows521drivers/char/vga.cif ( rows == video_num_lines ) {
rows527drivers/char/vga.cvc_resize(rows, 0);      /* Adjust console size */
rows529drivers/char/vga.creturn rows;
rows153init/main.cint rows, cols;