Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/
DDescriptorProvider.cs23 DescriptorLength = descriptorLength; in DescriptorProvider()
34 .Append((byte)DescriptorLength) in GetDescriptor()
53 public virtual int DescriptorLength { get; } property in Antmicro.Renode.Core.USB.DescriptorProvider
54 …public int RecursiveDescriptorLength => DescriptorLength + subdescriptors.Sum(sds => sds.Sum(sd =>…
DIProvidesDescriptor.cs17 int DescriptorLength { get; } property
DUSBString.cs64 public override int DescriptorLength => 2 + Encoding.Unicode.GetByteCount(Value); field in Antmicro.Renode.Core.USB.USBString
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/CDC/
DFunctionalDescriptor.cs29 buffer.Append((byte)DescriptorLength); in GetDescriptor()
37 public int RecursiveDescriptorLength => DescriptorLength;
38 public int DescriptorLength => specificData.Length + 3; field in Antmicro.Renode.Core.USB.CDC.FunctionalDescriptor
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/HID/
DReportDescriptor.cs50 public int RecursiveDescriptorLength => DescriptorLength;
52 public int DescriptorLength => rawDescriptor != null field in Antmicro.Renode.Core.USB.HID.ReportDescriptor
DDescriptor.cs21 HidDescriptorLength = checked((short)reportDescriptor.DescriptorLength); in Descriptor()