Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/
DLogEntry.cs109 … if(objectName != null && objectName.StartsWith(string.Format("{0}.", Machine.SystemBusName)))
111 objectName = objectName.Substring(Machine.SystemBusName.Length + 1);
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DPeripheralsCommand.cs35 var sysbusEntry = peripheralEntries.First(x => x.Key.Name == Machine.SystemBusName); in Run()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DMachine.cs59 SetLocalName(SystemBus, SystemBusName); in Machine()
239 if(splitPath.Length == 1 && name == SystemBusName)
246 if(splitPath[0] != SystemBusName)
254 …e(registeredPeripherals.GetNode(SystemBus), splitPath[1], out result, SystemBusName, out longestMa…
1318 public const string SystemBusName = "sysbus"; field in Antmicro.Renode.Core.Machine
1519 paths.Add(SystemBusName); in GetNames()
1523 … FindPaths(SystemBusName, peripheral, registeredPeripherals.GetNode(SystemBus), paths); in GetNames()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/
DMachineExtensions.cs125 … var sysbusEntry = peripheralEntries.First(x => x.Name == Machine.SystemBusName).Peripheral; in GetPeripheralsWithAllRegistrationPoints()