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.rs57 let timer = Timer::new(VideoRefreshExecutor::new(), 1); in run_video_refresh()
226 struct VideoRefreshExecutor; struct
228 impl VideoRefreshExecutor { implementation
229 fn new() -> Box<VideoRefreshExecutor> { in new()
230 return Box::new(VideoRefreshExecutor); in new()
234 impl TimerFunction for VideoRefreshExecutor { implementation
247 let timer = Timer::new(VideoRefreshExecutor::new(), REFRESH_INTERVAL); in run()