Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/HID/
DReportDescriptor.cs15 public ReportDescriptor(byte[] rawDescriptor) in ReportDescriptor() argument
17 this.rawDescriptor = rawDescriptor; in ReportDescriptor()
32 if(rawDescriptor != null) in GetDescriptor()
34 foreach(var b in rawDescriptor) in GetDescriptor()
52 public int DescriptorLength => rawDescriptor != null
53 ? rawDescriptor.Length
57 private readonly byte[] rawDescriptor; field in Antmicro.Renode.Core.USB.HID.ReportDescriptor