Home
last modified time | relevance | path

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

/external/crosvm/devices/src/usb/xhci/
Dxhci_abi.rs14 CannotCastTrb, enumerator
25 CannotCastTrb => write!(f, "cannot cast trb from raw memory"), in fmt()
687 T::from_slice(self.as_slice()).ok_or(Error::CannotCastTrb) in cast()
691 T::from_mut_slice(self.as_mut_slice()).ok_or(Error::CannotCastTrb) in cast_mut()
696 .ok_or(Error::CannotCastTrb)? in checked_cast()
701 return Err(Error::CannotCastTrb); in checked_cast()
703 T::from_slice(self.as_slice()).ok_or(Error::CannotCastTrb) in checked_cast()
708 .ok_or(Error::CannotCastTrb)? in checked_mut_cast()
713 return Err(Error::CannotCastTrb); in checked_mut_cast()
715 T::from_mut_slice(self.as_mut_slice()).ok_or(Error::CannotCastTrb) in checked_mut_cast()