Home
last modified time | relevance | path

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

/external/crosvm/devices/src/virtio/gpu/
Dprotocol.rs788 pub enum GpuResponse { enum
824 impl From<TubeError> for GpuResponse { implementation
825 fn from(e: TubeError) -> GpuResponse { in from() argument
826 GpuResponse::ErrMsg(e) in from()
830 impl From<RutabagaError> for GpuResponse { implementation
831 fn from(e: RutabagaError) -> GpuResponse { in from() argument
832 GpuResponse::ErrRutabaga(e) in from()
836 impl From<GpuDisplayError> for GpuResponse { implementation
837 fn from(e: GpuDisplayError) -> GpuResponse { in from() argument
838 GpuResponse::ErrDisplay(e) in from()
[all …]
Dmod.rs259 GpuCommand::GetDisplayInfo(_) => Ok(GpuResponse::OkDisplayInfo( in process_gpu_command()
314 Err(_) => return Err(GpuResponse::ErrUnspec), in process_gpu_command()
321 Err(GpuResponse::ErrUnspec) in process_gpu_command()
423 Err(GpuResponse::ErrInvalidParameter) in process_gpu_command()
428 Ok(GpuResponse::OkNoData) in process_gpu_command()
446 return Err(GpuResponse::ErrUnspec); in process_gpu_command()
457 Err(_) => return Err(GpuResponse::ErrUnspec), in process_gpu_command()
485 return Err(GpuResponse::ErrUnspec); in process_gpu_command()
569 let mut resp = Err(GpuResponse::ErrUnspec); in process_descriptor()
Dvirtio_gpu.rs28 GpuResponse::{self, *},
747 fn result_from_query(&mut self, resource_id: u32) -> GpuResponse { in result_from_query() argument