Home
last modified time | relevance | path

Searched refs:GetVariable (Results 1 – 7 of 7) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DPythonExecuteCommand.cs27 var value = GetVariable(variable); in Run()
45 private readonly Func<VariableToken, Token> GetVariable; field in Antmicro.Renode.UserInterface.Commands.PythonExecuteCommand
51 GetVariable = getVariable; in PythonExecuteCommand()
DExecuteCommand.cs37 … var macroLines = GetVariable(tokens[0] as VariableToken).GetObjectValue().ToString().Split('\n'); in Run()
57 GetVariable = getVariable; in ExecuteCommand()
63 private readonly Func<VariableToken, Token> GetVariable; field in Antmicro.Renode.UserInterface.Commands.ExecuteCommand
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Hooks/
DBusPeripheralsHooksPythonEngine.cs40 return (ulong)Scope.GetVariable("value"); in BusPeripheralsHooksPythonEngine()
54 return (ulong)Scope.GetVariable("value"); in BusPeripheralsHooksPythonEngine()
DRegisterCollectionHookPythonEngine.cs41 public T? Value => (T?)Scope.GetVariable("value");
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DPythonEngine.cs119 var value = Scope.GetVariable<object>(variable); in BeforeSerialization()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitorPythonEngine.cs76 object comm = Scope.GetVariable("mc_" + command_name); // get a method in ExecuteBuiltinCommand()
DMonitor.cs691 public object GetVariable(string name) in GetVariable() method in Antmicro.Renode.UserInterface.Monitor