Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/USBIP/
DUSBIPServer.cs403 var deviceDescriptor = ReadDeviceDescriptor(device); in GenerateDeviceDescriptor()
408 for(var i = 0; i < deviceDescriptor.NumberOfConfigurations; i++) in GenerateDeviceDescriptor()
424 IdVendor = deviceDescriptor.VendorId, in GenerateDeviceDescriptor()
425 IdProduct = deviceDescriptor.ProductId, in GenerateDeviceDescriptor()
427 DeviceClass = deviceDescriptor.Class, in GenerateDeviceDescriptor()
428 DeviceSubClass = deviceDescriptor.Subclass, in GenerateDeviceDescriptor()
429 DeviceProtocol = deviceDescriptor.Protocol, in GenerateDeviceDescriptor()
431 NumberOfConfigurations = deviceDescriptor.NumberOfConfigurations, in GenerateDeviceDescriptor()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USBDeprecated/
DUSBKeyboard.cs190 controlPacket = new byte[deviceDescriptor.ToArray().Length]; in GetDescriptor()
191 deviceDescriptor.ToArray().CopyTo(controlPacket, 0); in GetDescriptor()
192 return deviceDescriptor.ToArray(); in GetDescriptor()
361 private StandardUSBDescriptor deviceDescriptor = new StandardUSBDescriptor field in Antmicro.Renode.Peripherals.USBDeprecated.USBKeyboard
DUSBTablet.cs164 controlPacket = new byte[deviceDescriptor.ToArray().Length]; in GetDescriptor()
165 deviceDescriptor.ToArray().CopyTo(controlPacket, 0); in GetDescriptor()
166 return deviceDescriptor.ToArray(); in GetDescriptor()
390 private StandardUSBDescriptor deviceDescriptor = new StandardUSBDescriptor { field in Antmicro.Renode.Peripherals.USBDeprecated.USBTablet
DUSBMouse.cs179 controlPacket = new byte[deviceDescriptor.ToArray().Length]; in GetDescriptor()
180 deviceDescriptor.ToArray().CopyTo(controlPacket, 0); in GetDescriptor()
181 return deviceDescriptor.ToArray(); in GetDescriptor()
411 private StandardUSBDescriptor deviceDescriptor = new StandardUSBDescriptor { field in Antmicro.Renode.Peripherals.USBDeprecated.USBMouse
DUsbHub.cs397 controlPacket = new byte[deviceDescriptor.ToArray().Length]; in GetDescriptor()
398 deviceDescriptor.ToArray().CopyTo(controlPacket, 0); in GetDescriptor()
399 return deviceDescriptor.ToArray(); in GetDescriptor()
573 private StandardUSBDescriptor deviceDescriptor = new StandardUSBDescriptor field in Antmicro.Renode.Peripherals.USBDeprecated.UsbHub
DSMSC9500.cs111 controlPacket = new byte[deviceDescriptor.ToArray().Length]; in GetDescriptor()
112 deviceDescriptor.ToArray().CopyTo(controlPacket, 0); in GetDescriptor()
113 return deviceDescriptor.ToArray(); in GetDescriptor()
479 private StandardUSBDescriptor deviceDescriptor = new StandardUSBDescriptor { field in Antmicro.Renode.Peripherals.USBDeprecated.SMSC9500
DMassStorage.cs117 controlPacket = deviceDescriptor.ToArray(); in GetDescriptor()
570 private StandardUSBDescriptor deviceDescriptor = new StandardUSBDescriptor field in Antmicro.Renode.Peripherals.USBDeprecated.MassStorage
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Storage/
DUFSDevice.cs635 data = Packet.Encode(deviceDescriptor); in HandleQueryFunctionReadDescriptor()
895 deviceDescriptor = new DeviceDescriptor in InitDeviceDescriptor()
1309 private DeviceDescriptor deviceDescriptor; field in Antmicro.Renode.Peripherals.Storage.UFSDevice