Searched refs:bottom (Results 1 – 4 of 4) sorted by relevance
/DragonOS/kernel/src/driver/video/fbdev/base/fbcon/ |
H A D | framebuffer_console.rs | 403 bottom: usize, in con_scroll() 423 let end = bottom * vc_data.cols; in con_scroll() 432 (bottom - top) as u32, in con_scroll() 436 let _ = self.con_clear(vc_data, bottom - count, 0, count, vc_data.cols); in con_scroll() 438 let offset = vc_data.cols * (bottom - count); in con_scroll() 451 let end = bottom * vc_data.cols; in con_scroll() 454 let data = &vc_data.screen_buf[start..(bottom - count) * vc_data.cols]; in con_scroll() 456 for line in top..(bottom - count) { in con_scroll() 492 let _ = self.con_clear(vc_data, bottom - count, 0, count, vc_data.cols); in con_scroll() 494 let offset = vc_data.cols * (bottom - count); in con_scroll() [all …]
|
/DragonOS/kernel/src/driver/tty/ |
H A D | console.rs | 130 bottom: usize, in con_scroll()
|
/DragonOS/kernel/src/driver/tty/virtual_terminal/ |
H A D | virtual_console.rs | 62 pub bottom: usize, field 161 bottom: Default::default(), in new() 572 max_y = self.bottom - 1; in gotoxy() 592 if self.top + nr >= self.bottom { in scroll() 594 nr = self.bottom - self.top - 1; in scroll() 604 .con_scroll(self, self.top, self.bottom, dir, nr) in scroll() 635 if self.state.y + 1 == self.bottom { in line_feed() 955 self.bottom = self.par[1] as usize; in do_getpars()
|
H A D | mod.rs | 316 vc_data.bottom = vc_data.rows; in do_install()
|