Home
last modified time | relevance | path

Searched refs:bottom (Results 1 – 4 of 4) sorted by relevance

/DragonOS/kernel/src/driver/video/fbdev/base/fbcon/
H A Dframebuffer_console.rs400 bottom: usize, in con_scroll()
420 let end = bottom * vc_data.cols; in con_scroll()
429 (bottom - top) as u32, in con_scroll()
433 let _ = self.con_clear(vc_data, bottom - count, 0, count, vc_data.cols); in con_scroll()
435 let offset = vc_data.cols * (bottom - count); in con_scroll()
448 let end = bottom * vc_data.cols; in con_scroll()
451 let data = &vc_data.screen_buf[start..(bottom - count) * vc_data.cols]; in con_scroll()
453 for line in top..(bottom - count) { in con_scroll()
489 let _ = self.con_clear(vc_data, bottom - count, 0, count, vc_data.cols); in con_scroll()
491 let offset = vc_data.cols * (bottom - count); in con_scroll()
[all …]
/DragonOS/kernel/src/driver/tty/
H A Dconsole.rs123 bottom: usize, in con_scroll()
/DragonOS/kernel/src/driver/tty/virtual_terminal/
H A Dvirtual_console.rs67 pub bottom: usize, field
169 bottom: Default::default(), in new()
587 max_y = self.bottom - 1; in gotoxy()
607 if self.top + nr >= self.bottom { in scroll()
609 nr = self.bottom - self.top - 1; in scroll()
619 .con_scroll(self, self.top, self.bottom, dir, nr) in scroll()
650 if self.state.y + 1 == self.bottom { in line_feed()
970 self.bottom = self.par[1] as usize; in do_getpars()
H A Dmod.rs181 vc_data.bottom = vc_data.rows; in install()