Home
last modified time | relevance | path

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

/external/crosvm/gpu_display/src/sys/
Dwindows.rs20 use crate::WindowProcedureThread;
46 wndproc_thread: WindowProcedureThread, in open_winapi() argument
54 wndproc_thread: WindowProcedureThread, in open_winapi() argument
/external/crosvm/gpu_display/src/gpu_display_win/
Dmod.rs42 pub use window_procedure_thread::WindowProcedureThread;
80 wndproc_thread: WindowProcedureThread<Surface>,
89 wndproc_thread: WindowProcedureThread<Surface>, in new()
Dwindow_procedure_thread.rs69 pub struct WindowProcedureThread<T: HandleWindowMessage> { struct
77 impl<T: HandleWindowMessage> WindowProcedureThread<T> { argument
334 impl<T: HandleWindowMessage> Drop for WindowProcedureThread<T> { implementation
347 unsafe impl<T: HandleWindowMessage> Send for WindowProcedureThread<T> {} implementation
/external/crosvm/devices/src/virtio/gpu/
Dmod.rs215 #[cfg(windows)] wndproc_thread: &mut Option<WindowProcedureThread>, in build() argument
1033 #[cfg(windows)] wndproc_thread: &mut Option<WindowProcedureThread>, in build() argument
1073 wndproc_thread: Option<WindowProcedureThread>,
1095 #[cfg(windows)] wndproc_thread: WindowProcedureThread, in new() argument
1547 ) -> anyhow::Result<WindowProcedureThread> { in start_wndproc_thread() argument
1548 WindowProcedureThread::start_thread(vm_tube) in start_wndproc_thread()
/external/crosvm/gpu_display/src/
Dlib.rs41 pub type WindowProcedureThread = gpu_display_win::WindowProcedureThread<gpu_display_win::Surface>; typedef