Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/
DMachineTests.cs32 machine.SetLocalName(peripheral1, "name"); in ShouldThrowOnRegisteringAnotherPeripheralWithTheSameName()
34 … Assert.Throws(typeof(RecoverableException), () => machine.SetLocalName(peripheral2, "name")); in ShouldThrowOnRegisteringAnotherPeripheralWithTheSameName()
43 machine.SetLocalName(peripheral1, "name"); in ShouldFindPeripheralByPath()
56 machine.SetLocalName(peripheral1, "first"); in ShouldFindPeripheralByPathWhenThereAreTwo()
57 machine.SetLocalName(peripheral2, "second"); in ShouldFindPeripheralByPathWhenThereAreTwo()
70 … Assert.Throws(typeof(RecoverableException), () => machine.SetLocalName(peripheral1, "")); in ShouldThrowOnNullOrEmptyPeripheralName()
71 … Assert.Throws(typeof(RecoverableException), () => machine.SetLocalName(peripheral1, null)); in ShouldThrowOnNullOrEmptyPeripheralName()
DSerializationTests.cs105 machine.SetLocalName(cpu, name); in ShouldRememberCpuNames()
DTimeSourceTests.cs741 result.SetLocalName(peripheral, "mock"); in ShouldRecordAndPlayEvents()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SD/
DSDCardExtensions.cs21 machine.SetLocalName(card, name ?? "sdCard"); in SdCardFromFile()
28 machine.SetLocalName(card, name ?? "sdCard"); in SdCardFromFile()
35 machine.SetLocalName(card, name ?? "sdCard"); in SdCardFromFile()
42 machine.SetLocalName(card, name ?? "sdCard"); in SdCardFromFile()
49 machine.SetLocalName(card, name ?? "sdCard"); in EmptySdCard()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USBDeprecated/
DMassStorageExtensions.cs22 machine.SetLocalName(pendrive, name); in PendriveFromFile()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MTD/
DCFIFlashExtensions.cs30 machine.SetLocalName(flash, name); in CFIFlashFromFile()
DSamsungK9NANDFlash.cs35 machine.SetLocalName(flash, name); in SamsungK9NANDFlashFromFile()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Python/
DPythonPeripheral.cs26 @this.SetLocalName(pyDev, name); in PyDevFromFile()
36 @this.SetLocalName(pyDev, name); in PyDevFromString()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/UART/
DVirtualConsole.cs24 machine.SetLocalName(virtConsole, name); in CreateVirtualConsole()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CAN/
DSocketCANBridge.cs29 machine.SetLocalName(bridge, name); in CreateSocketCANBridge()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/
DIMachine.cs64 void SetLocalName(IPeripheral peripheral, string name); in SetLocalName() method
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USB/
DUSBPendrive.cs34 machine.SetLocalName(pendrive, name); in PendriveFromFile()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Config/Devices/
DDevicesConfig.cs543 machine.SetLocalName(device.Peripheral, device.Name); in DevicesConfig()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DMachine.cs59 SetLocalName(SystemBus, SystemBusName); in Machine()
290 public void SetLocalName(IPeripheral peripheral, string name) in SetLocalName() method in Antmicro.Renode.Core.Machine
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm/
DArmSignalsUnit.cs390 machine.SetLocalName(snoopControlUnit, scuName); in RegisterSCU()