Searched defs:GpuDisplay (Results  1 – 5 of 5) sorted by relevance
| /external/crosvm/gpu_display/src/sys/ | 
| D | unix.rs | 21 impl GpuDisplayExt for GpuDisplay {  implementation40     fn open_wayland<P: AsRef<Path>>(wayland_path: Option<P>) -> GpuDisplayResult<GpuDisplay>;  in open_wayland()
 43 impl UnixGpuDisplayExt for GpuDisplay {  implementation
 44     fn open_wayland<P: AsRef<Path>>(wayland_path: Option<P>) -> GpuDisplayResult<GpuDisplay> {  in open_wayland()
 65 impl AsRawDescriptor for GpuDisplay {  implementation
 
 | 
| D | windows.rs | 33 impl GpuDisplayExt for GpuDisplay {  implementation49     ) -> GpuDisplayResult<GpuDisplay>;  in open_winapi()
 52 impl WinGpuDisplayExt for GpuDisplay {  implementation
 57     ) -> GpuDisplayResult<GpuDisplay> {  in open_winapi()
 75 impl AsRawDescriptor for GpuDisplay {  implementation
 
 | 
| /external/crosvm/gpu_display/src/ | 
| D | lib.rs | 314 pub struct GpuDisplay {  struct317     surfaces: BTreeMap<u32, Box<dyn GpuDisplaySurface>>,  argument
 318     imports: BTreeMap<u32, Box<dyn GpuDisplayImport>>,  argument
 327 impl GpuDisplay {  argument
 329     pub fn open_x<S: AsRef<str>>(display_name: Option<S>) -> GpuDisplayResult<GpuDisplay> {  in open_x()
 
 | 
| /external/crosvm/devices/src/virtio/gpu/ | 
| D | virtio_gpu.rs | 150         display: &Rc<RefCell<GpuDisplay>>,  in create_surface()188     fn release_surface(&mut self, display: &Rc<RefCell<GpuDisplay>>) {  in release_surface()
 196     fn set_position(&self, display: &Rc<RefCell<GpuDisplay>>, x: u32, y: u32) -> VirtioGpuResult {  in set_position()
 212         display: &Rc<RefCell<GpuDisplay>>,  in flush()
 254         display: &Rc<RefCell<GpuDisplay>>,  in import_resource_to_display()
 345         display: GpuDisplay,  in new()
 420     pub fn display(&mut self) -> &Rc<RefCell<GpuDisplay>> {  in display()
 
 | 
| D | mod.rs | 319     pub fn display(&mut self) -> &Rc<RefCell<GpuDisplay>> {  in display()1034     ) -> std::result::Result<GpuDisplay, GpuDisplayError> {  in build()
 
 |