| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/ |
| D | SimpleContainer.cs | 18 Dictionary<int, IPeripheral> ChildCollection { get; } property 31 return ChildCollection.Keys.Select(x => new NumberRegistrationPoint<int>(x)).ToList(); in GetRegistrationPoints() 38 …return ChildCollection.Select(x => Registered.Create(x.Value, new NumberRegistrationPoint<int>(x.K… 44 if(ChildCollection.ContainsKey(registrationPoint.Address)) in Register() 48 ChildCollection.Add(registrationPoint.Address, peripheral); in Register() 53 …var toRemove = ChildCollection.Where(x => x.Value.Equals(peripheral)).Select(x => x.Key).ToList();… in Unregister() 60 ChildCollection.Remove(key); in Unregister() 66 foreach(var child in ChildCollection.Values.OfType<IDisposable>()) in Dispose() 71 ChildCollection.Clear(); in Dispose() 74 …Dictionary<int, IPeripheral> ISimpleContainer.ChildCollection => this.ChildCollection.ToDictionary… [all …]
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USB/ |
| D | USBHost.cs | 48 ChildCollection.Remove(address); in Unregister() 131 ChildCollection.Add(addressCounter, peripheral); in TryInitializeConnectedDevice()
|
| D | MPFS_USB.cs | 574 …device = this.ChildCollection.Select(x => x.Value).FirstOrDefault(x => x.USBCore.Address == addres… in TryGetDeviceForEndpoint() 610 … var peripheral = ChildCollection.Values.FirstOrDefault(x => !addressToDeviceCache.Exists(x)); in TryInitializeConnectedDevice()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/ |
| D | BaseRiscV.cs | 60 ChildCollection = new Dictionary<int, ICFU>(); in BaseRiscV() 103 … var isRegistered = ChildCollection.Where(x => x.Value.Equals(cfu)).Select(x => x.Key).ToList(); in Register() 108 else if(ChildCollection.ContainsKey(registrationPoint.Address)) in Register() 113 ChildCollection.Add(registrationPoint.Address, cfu); in Register() 120 …var toRemove = ChildCollection.Where(x => x.Value.Equals(cfu)).Select(x => x.Key).ToList(); //ToLi… in Unregister() 123 ChildCollection.Remove(key); in Unregister() 131 return ChildCollection.Keys.Select(x => new NumberRegistrationPoint<int>(x)); in GetRegistrationPoints() 138 …return ChildCollection.Select(x => Registered.Create(x.Value, new NumberRegistrationPoint<int>(x.K… 845 public readonly Dictionary<int, ICFU> ChildCollection; field in Antmicro.Renode.Peripherals.CPU.BaseRiscV
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/ |
| D | IPeripheral.cs | 66 …var allMachines = simpleContainer.ChildCollection.Select(x => x.Value.GetMachine()).Distinct().ToA… in TryGetMachine()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/PCI/ |
| D | PCIHost_Bridge.cs | 111 if(!ChildCollection.TryGetValue((int)deviceNumber.Value, out selectedDevice)) in ReadData()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/I2C/ |
| D | STM32F4_I2C.cs | 186 if(ChildCollection.ContainsKey(address)) in DataWrite() 188 selectedSlave = ChildCollection[address]; in DataWrite()
|
| D | OpenCoresI2C.cs | 151 if(!ChildCollection.TryGetValue(slaveAddress, out selectedSlave)) in TryResolveSelectedSlave()
|
| D | MPFS_I2C.cs | 227 … if(!ChildCollection.TryGetValue((int)slaveAddress, out selectedSlave)) in DefineRegisters()
|
| D | BetrustedSocI2C.cs | 223 if(!ChildCollection.TryGetValue(slaveAddress, out selectedSlave)) in TryResolveSelectedSlave()
|
| D | BetrustedEcI2C.cs | 243 if(!ChildCollection.TryGetValue(slaveAddress, out selectedSlave)) in TryResolveSelectedSlave()
|
| D | SAM4S_TWI.cs | 305 return ChildCollection.GetOrDefault((int)slaveAddress); in FindPeripheral()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/ |
| D | HiFive_SPI.cs | 45 if(!ChildCollection.ContainsKey(checked((int)value))) in HiFive_SPI()
|
| D | MAX3421E.cs | 128 … if((hostMode.Value || startOfFramePacketsGenerationEnable.Value) && ChildCollection.Any()) in HandleBumper() 393 …var device = this.ChildCollection.Values.FirstOrDefault(x => x.USBCore.Address == deviceAddress.Va… in HandleHostTransfer()
|
| D | IMXRT_LPSPI.cs | 232 valueProviderCallback: _ => (ulong)ChildCollection.Count in DefineRegisters()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/USBIP/ |
| D | USBIPServer.cs | 471 NumberOfExportedDevices = (uint)ChildCollection.Count in HandleListDevicesCommand() 476 foreach(var child in ChildCollection) in HandleListDevicesCommand()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/ATAPI/ |
| D | ATAPI.cs | 135 if(!ChildCollection.TryGetValue((int)device, out selectedDevice)) in SelectDevice()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SCI/ |
| D | RenesasRA8M1_SCI.cs | 270 if(i2cContainer.ChildCollection.Count != 0) in SetPeripheralMode()
|
| D | RenesasRA6M5_SCI.cs | 296 if(i2cContainer.ChildCollection.Count != 0) in SetPeripheralMode()
|