Home
last modified time | relevance | path

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

/aosp_15_r20/external/crosvm/devices/src/virtio/gpu/
H A Dprotocol.rs609 pub enum GpuCommandDecodeError { enum
618 impl From<io::Error> for GpuCommandDecodeError { implementation
619 fn from(e: io::Error) -> GpuCommandDecodeError { in from() argument
620 GpuCommandDecodeError::IO(e) in from()
660 pub fn decode(cmd: &mut Reader) -> Result<GpuCommand, GpuCommandDecodeError> { in decode() argument
690 _ => return Err(GpuCommandDecodeError::InvalidType(hdr.type_.into())), in decode()