Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitor.cs47 return currentMachine;
51 currentMachine = value;
132 if(currentMachine == machine) in UpdateMonitorPrompt()
134 currentMachine = null; in UpdateMonitorPrompt()
168 if(currentMachine == oldMachine) in JoinEmulation()
170 currentMachine = newMachine; in JoinEmulation()
226 Commands.Add(new CreatePlatformCommand(this, x => currentMachine = x)); in InitCommands()
228 Commands.Add(new QuitCommand(this, x => currentMachine = x, () => Quitted)); in InitCommands()
229 Commands.Add(new PeripheralsCommand(this, () => currentMachine)); in InitCommands()
241 Commands.Add(new MachCommand(this, () => currentMachine, x => currentMachine = x)); in InitCommands()
[all …]
DMonitorCommands.cs272 if(currentMachine != null || staticBound != null || iface != null) in GetDevice()
453 if(currentMachine != null || staticBound != null || iface != null) in ProcessDeviceActionByName()
494 var ret = currentMachine.TryGetByName(name, out peripheral, out longestMatching); in TryFindPeripheralTypeByName()
501 … ret = currentMachine.TryGetByName(prefix + name, out peripheral, out currentMatch); in TryFindPeripheralTypeByName()
526 if(currentMachine == null) in TryFindPeripheralByName()
535 var ret = currentMachine.TryGetByName(name, out peripheral, out longestMatching); in TryFindPeripheralByName()
542 … ret = currentMachine.TryGetByName(prefix + name, out peripheral, out currentMatch); in TryFindPeripheralByName()
854 if(currentMachine != null) in ConvertValue()
857 if(currentMachine.PeripheralsGroups.TryGetByName((string)value, out group)) in ConvertValue()
917 device = device ?? FromMapping(name) ?? iface ?? (object)currentMachine[name]; in IdentifyDevice()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DMachCommand.cs24 var currentMachine = GetCurrentMachine(); in PrintHelp()
25 if(currentMachine == null) in PrintHelp()
31 …string.Format("Current machine: {0}", EmulationManager.Instance.CurrentEmulation[currentMachine])); in PrintHelp()
DPeripheralsCommand.cs25 var currentMachine = GetCurrentMachine(); in Run()
26 if(currentMachine == null) in Run()
34 var peripheralEntries = currentMachine.GetPeripheralsWithAllRegistrationPoints(); in Run()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/
DSVDParserTests.cs23 currentMachine = new Machine(); in Init()
33 currentMachine = new Machine(); in ShouldThrowOnNonexistingFile()
34 … device = new SVDParser(Path.Combine("invalid", "path.svd"), currentMachine.SystemBus); in ShouldThrowOnNonexistingFile()
1023 device = new SVDParser(fileName, currentMachine.SystemBus); in SetUpDeviceWithInfix()
1030 device = new SVDParser(fileName, currentMachine.SystemBus); in SetUpDeviceWithString()
1033 private Machine currentMachine; field in Antmicro.Renode.UnitTests.SVDParserTests