Home
last modified time | relevance | path

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

/DragonOS/kernel/src/driver/video/
H A Dmod.rs53 let timer = Timer::new(VideoRefreshExecutor::new(), 1); in run_video_refresh()
217 struct VideoRefreshExecutor; struct
219 impl VideoRefreshExecutor { implementation
220 fn new() -> Box<VideoRefreshExecutor> { in new()
221 return Box::new(VideoRefreshExecutor); in new()
225 impl TimerFunction for VideoRefreshExecutor { implementation
238 let timer = Timer::new(VideoRefreshExecutor::new(), REFRESH_INTERVAL); in run()