Home
last modified time | relevance | path

Searched refs:Machine (Results 1 – 25 of 121) sorted by relevance

12345

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Hooks/
DUserStatePythonEngine.cs24 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
DCpuHooksExtensions.cs17 …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()
DUartPythonEngine.cs26 Machine = machine; in UartPythonEngine()
43 Scope.SetVariable(Core.Machine.MachineKeyword, Machine); in InnerInit()
56 private readonly IMachine Machine; field in Antmicro.Renode.Hooks.UartPythonEngine
DBlockPythonEngine.cs25 Machine = mach; in BlockPythonEngine()
52 Scope.SetVariable(Core.Machine.MachineKeyword, Machine); in InnerInit()
68 private readonly IMachine Machine; field in Antmicro.Renode.Hooks.BlockPythonEngine
DBusPeripheralsHooksPythonEngine.cs64 Scope.SetVariable(Machine.MachineKeyword, Sysbus.Machine); in InnerInit()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/
DReadMemoryCommand.cs35 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()
DWriteDataToMemoryCommand.cs64 … 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()
DMonitorCommand.cs71 manager.Machine.Pause(); in TryProcess()
72 manager.Machine.Reset(); in TryProcess()
75 manager.Machine.Pause(); in TryProcess()
DCalculateCRCCommand.cs41 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/
DMonitorTimeExtensions.cs17 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/
DPeripheralsGroupTests.cs23 using(var machine = new Machine()) in ShouldNotUnregisterSinglePeripheralFromGroup()
48 using(var machine = new Machine()) in ShouldUnregisterPeripheralGroups()
62 using(var machine = new Machine()) in ShouldNotAddUnregisteredPeripheralToGroup()
DMachineTests.cs27 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()
DMultiCPUTests.cs26 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/
DCreatePlatformCommand.cs59 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;
DQuitCommand.cs28 private Action<Machine> SetCurrentMachine;
31 …public QuitCommand(Monitor monitor, Action<Machine> setCurrentMachine, Func<Action> quitted) : bas… in QuitCommand()
DMachCommand.cs75 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/
DLPC43xx_GPIO_Test.cs21 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()
DEFM32GGI2CControllerTest.cs26 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/
DExternalCPU.cs12 using Machine = Antmicro.Renode.Core.Machine; typedef
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Tools/Network/
DSwitch.cs55 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/
DPrivilegeLevel.cs15 Machine = 3 enumerator
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/
DNullRegistrationPointPeripheralContainer.cs24 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/
DIPeripheralsGroup.cs16 IMachine Machine { get; } property
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/SiLabs/
DEFR32xG24_FlashUserData.cs24 public EFR32xG24_FlashUserData(Machine machine) in EFR32xG24_FlashUserData()
111 private readonly Machine machine;
/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);

12345