Home
last modified time | relevance | path

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

/external/crosvm/devices/src/usb/xhci/
Dxhci_abi.rs138 let t = self.cast::<SetupStageTrb>()?; in fmt_helper()
317 pub struct SetupStageTrb { struct
611 impl TypedTrb for SetupStageTrb { implementation
721 unsafe impl DataInit for SetupStageTrb {} implementation
749 unsafe impl TrbCast for SetupStageTrb {} implementation
887 assert_eq!(std::mem::size_of::<SetupStageTrb>(), TRB_SIZE); in check_struct_sizes()
Dxhci_transfer.rs9 AddressedTrb, Error as TrbError, EventDataTrb, SetupStageTrb, TransferDescriptor, TrbCast,
122 let trb = td[0].trb.cast::<SetupStageTrb>().map_err(Error::CastTrb)?; in new()