Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USB/
DUSBHost.cs27 devices = new TwoWayDictionary<byte, IUSBDevice>(); in USBHost()
152 private readonly TwoWayDictionary<byte, IUSBDevice> devices;
DMPFS_USB.cs28 addressToDeviceCache = new TwoWayDictionary<byte, IUSBDevice>(); in MPFS_USB()
624 private readonly TwoWayDictionary<byte, IUSBDevice> addressToDeviceCache;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/GPIOPort/
DMiV_CoreGPIO.cs78 intTypeToVal = new TwoWayDictionary<GPIOInterruptManager.InterruptTrigger, uint>(); in MiV_CoreGPIO()
259 private readonly TwoWayDictionary<GPIOInterruptManager.InterruptTrigger, uint> intTypeToVal;
DMPFS_GPIO.cs89 var intTypeToVal = new TwoWayDictionary<GPIOInterruptManager.InterruptTrigger, uint>(); in MPFS_GPIO()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Collections/
DTwoWayDictionary.cs16 public class TwoWayDictionary<TLeft, TRight> class