Searched refs:GpuResponse (Results 1 – 3 of 3) sorted by relevance
788 pub enum GpuResponse { enum824 impl From<TubeError> for GpuResponse { implementation825 fn from(e: TubeError) -> GpuResponse { in from() argument826 GpuResponse::ErrMsg(e) in from()830 impl From<RutabagaError> for GpuResponse { implementation831 fn from(e: RutabagaError) -> GpuResponse { in from() argument832 GpuResponse::ErrRutabaga(e) in from()836 impl From<GpuDisplayError> for GpuResponse { implementation837 fn from(e: GpuDisplayError) -> GpuResponse { in from() argument838 GpuResponse::ErrDisplay(e) in from()[all …]
259 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()
28 GpuResponse::{self, *},747 fn result_from_query(&mut self, resource_id: u32) -> GpuResponse { in result_from_query() argument