Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/
DPeripheralsGroupTests.cs30 machine.PeripheralsGroups.GetOrCreate("test-group", new [] { peripheral }); in ShouldNotUnregisterSinglePeripheralFromGroup()
52 … var group = machine.PeripheralsGroups.GetOrCreate("test-group", new [] { peripheral }); in ShouldUnregisterPeripheralGroups()
66 … machine.PeripheralsGroups.GetOrCreate("test-group", new [] { new MappedMemory(machine, 10) }); in ShouldNotAddUnregisteredPeripheralToGroup()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DIPeripheralsGroupsManager.cs17 IPeripheralsGroup GetOrCreate(string name, IEnumerable<IPeripheral> peripherals); in GetOrCreate() method
DMachine.cs1902 public IPeripheralsGroup GetOrCreate(string name, IEnumerable<IPeripheral> peripherals) in GetOrCreate() method in Antmicro.Renode.Core.Machine.PeripheralsGroupsManager
1920 public IPeripheralsGroup GetOrCreate(string name) in GetOrCreate() method in Antmicro.Renode.Core.Machine.PeripheralsGroupsManager
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Config/Devices/
DDevicesConfig.cs538 … machine.PeripheralsGroups.GetOrCreate(group.Key, group.Value.Select(x => x.Peripheral)); in DevicesConfig()