| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Hooks/ |
| D | UserStatePythonEngine.cs | 24 Machine = machine; in UserStatePythonEngine() 41 Scope.SetVariable(Core.Machine.MachineKeyword, Machine); in InnerInit() 42 Scope.SetVariable("self", Machine); in InnerInit() 52 private readonly IMachine Machine; field in Antmicro.Renode.Hooks.UserStatePythonEngine
|
| D | CpuHooksExtensions.cs | 17 …public static void AddHook(this ICPUWithHooks cpu, [AutoParameter]Machine m, ulong addr, string py… in AddHook() 23 …public static void AddHookAtWfiStateChange(this ICPUWithHooks cpu, [AutoParameter]Machine m, strin… in AddHookAtWfiStateChange() 29 …public static void AddHookAtInterruptBegin(this ICPUWithHooks cpu, [AutoParameter]Machine m, strin… in AddHookAtInterruptBegin() 35 …public static void AddHookAtInterruptEnd(this ICPUWithHooks cpu, [AutoParameter]Machine m, string … in AddHookAtInterruptEnd()
|
| D | UartPythonEngine.cs | 26 Machine = machine; in UartPythonEngine() 43 Scope.SetVariable(Core.Machine.MachineKeyword, Machine); in InnerInit() 56 private readonly IMachine Machine; field in Antmicro.Renode.Hooks.UartPythonEngine
|
| D | BlockPythonEngine.cs | 25 Machine = mach; in BlockPythonEngine() 52 Scope.SetVariable(Core.Machine.MachineKeyword, Machine); in InnerInit() 68 private readonly IMachine Machine; field in Antmicro.Renode.Hooks.BlockPythonEngine
|
| D | BusPeripheralsHooksPythonEngine.cs | 64 Scope.SetVariable(Machine.MachineKeyword, Sysbus.Machine); in InnerInit()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/ |
| D | ReadMemoryCommand.cs | 35 if(manager.Machine.SystemBus.WhatIsAt(access.Address, context: manager.Cpu) == null) in Execute() 47 … val = manager.Machine.SystemBus.ReadByte(access.Address, context: manager.Cpu); in Execute() 51 … val = manager.Machine.SystemBus.ReadWord(access.Address, context: manager.Cpu); in Execute() 55 … val = manager.Machine.SystemBus.ReadDoubleWord(access.Address, context: manager.Cpu); in Execute() 59 … val = manager.Machine.SystemBus.ReadQuadWord(access.Address, context: manager.Cpu); in Execute() 63 …data = manager.Machine.SystemBus.ReadBytes(access.Address, (int)access.Length, context: manager.Cp… in Execute()
|
| D | WriteDataToMemoryCommand.cs | 64 … manager.Machine.SystemBus.WriteByte(access.Address, (byte)val, context: manager.Cpu); in WriteData() 67 … manager.Machine.SystemBus.WriteWord(access.Address, (ushort)val, context: manager.Cpu); in WriteData() 70 … manager.Machine.SystemBus.WriteDoubleWord(access.Address, (uint)val, context: manager.Cpu); in WriteData() 73 … manager.Machine.SystemBus.WriteQuadWord(access.Address, (ulong)val, context: manager.Cpu); in WriteData() 76 …manager.Machine.SystemBus.WriteBytes(data, access.Address, startingIndex, (long)access.Length, con… in WriteData()
|
| D | MonitorCommand.cs | 71 manager.Machine.Pause(); in TryProcess() 72 manager.Machine.Reset(); in TryProcess() 75 manager.Machine.Pause(); in TryProcess()
|
| D | CalculateCRCCommand.cs | 41 if(manager.Machine.SystemBus.WhatIsAt(access.Address, context: manager.Cpu) == null) in Execute() 48 …manager.Machine.SystemBus.ReadBytes(access.Address, (int)access.Length, data, currentIndex, onlyMe… in Execute()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/ |
| D | MonitorTimeExtensions.cs | 17 public static void SetAdvanceImmediately(this Machine @this, bool val) in SetAdvanceImmediately() 22 public static void SetQuantum(this Machine @this, TimeInterval interval) in SetQuantum() 27 public static string GetTimeSourceInfo(this Machine @this) in GetTimeSourceInfo() 62 public static bool SetSerialExecution(this Machine @this, bool val) in SetSerialExecution()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/ |
| D | PeripheralsGroupTests.cs | 23 using(var machine = new Machine()) in ShouldNotUnregisterSinglePeripheralFromGroup() 48 using(var machine = new Machine()) in ShouldUnregisterPeripheralGroups() 62 using(var machine = new Machine()) in ShouldNotAddUnregisteredPeripheralToGroup()
|
| D | MachineTests.cs | 27 var machine = new Machine(); in ShouldThrowOnRegisteringAnotherPeripheralWithTheSameName() 40 var machine = new Machine(); in ShouldFindPeripheralByPath() 51 var machine = new Machine(); in ShouldFindPeripheralByPathWhenThereAreTwo() 66 var machine = new Machine(); in ShouldThrowOnNullOrEmptyPeripheralName() 82 var machine = new Machine(); in ShouldHandleManagedThreads()
|
| D | MultiCPUTests.cs | 26 using(var machine = new Machine()) in ShouldEnumerateCPUs() 47 using(var machine = new Machine()) in ShouldGuardPeripheralReads()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/ |
| D | CreatePlatformCommand.cs | 59 var mach = new Machine() { Platform = platform }; in Execute() 65 …public CreatePlatformCommand(Monitor monitor, Action<Machine> changeCurrentMachine) : base(monitor… in CreatePlatformCommand() 70 private readonly Action<Machine> changeCurrentMachine;
|
| D | QuitCommand.cs | 28 private Action<Machine> SetCurrentMachine; 31 …public QuitCommand(Monitor monitor, Action<Machine> setCurrentMachine, Func<Action> quitted) : bas… in QuitCommand()
|
| D | MachCommand.cs | 75 machine = new Machine(); in Run() 103 machine = new Machine(); in Run() 119 var machine = new Machine(); in Run()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Test/PeripheralsTests/ |
| D | LPC43xx_GPIO_Test.cs | 21 var machine = new Machine(); in InitTest() 42 var machine = new Machine(); in ChangeDirectionToOutput() 69 var machine = new Machine(); in ChangeOutputsState() 133 var machine = new Machine(); in ChangeMask() 150 var machine = new Machine(); in ChangeMaskedOuputState()
|
| D | EFM32GGI2CControllerTest.cs | 26 var machine = new Machine(); in InitTest() 57 var machine = new Machine(); in CtrlTest() 69 var machine = new Machine(); in InterruptTest() 97 var machine = new Machine(); in ReadFromSlaveTest() 167 var machine = new Machine(); in TemperatureMeasurementTest() 272 var machine = new Machine(); in DualI2CAddressBMC050Test()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ |
| D | ExternalCPU.cs | 12 using Machine = Antmicro.Renode.Core.Machine; typedef
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Tools/Network/ |
| D | Switch.cs | 55 ifaceDescriptor.Machine = machine ?? peripheralInterface.GetMachine(); in AttachTo() 162 if(iface.Machine == null) in ForwardToReceiver() 168 … iface.Machine.HandleTimeDomainEvent(iface.Interface.ReceiveFrame, frame.Clone(), vts, () => in ForwardToReceiver() 190 public IMachine Machine; field in Antmicro.Renode.Tools.Network.Switch.InterfaceDescriptor
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/ |
| D | PrivilegeLevel.cs | 15 Machine = 3 enumerator
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/ |
| D | NullRegistrationPointPeripheralContainer.cs | 24 Machine = machine; in NullRegistrationPointPeripheralContainer() 47 protected readonly IMachine Machine; field in Antmicro.Renode.Core.Structure.NullRegistrationPointPeripheralContainer
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/ |
| D | IPeripheralsGroup.cs | 16 IMachine Machine { get; } property
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/SiLabs/ |
| D | EFR32xG24_FlashUserData.cs | 24 public EFR32xG24_FlashUserData(Machine machine) in EFR32xG24_FlashUserData() 111 private readonly Machine machine;
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/ |
| D | LogEntry.cs | 109 … if(objectName != null && objectName.StartsWith(string.Format("{0}.", Machine.SystemBusName))) 111 objectName = objectName.Substring(Machine.SystemBusName.Length + 1);
|