Home
last modified time | relevance | path

Searched refs:pythonRunner (Results 1 – 3 of 3) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Python/
DPythonPeripheral.cs57 …this.pythonRunner = new PeripheralPythonEngine(this, x => x.CreateScriptSourceFromString(this.scri… in PythonPeripheral()
65 …this.pythonRunner = new PeripheralPythonEngine(this, x => x.CreateScriptSourceFromFile(this.filena… in PythonPeripheral()
71 pythonRunner.Request.absolute = address; in SetAbsoluteAddress()
76 pythonRunner.Request.length = 1; in ReadByte()
78 return unchecked((byte)pythonRunner.Request.value); in ReadByte()
83 pythonRunner.Request.length = 1; in WriteByte()
89 pythonRunner.Request.length = 4; in ReadDoubleWord()
91 return unchecked((uint)pythonRunner.Request.value); in ReadDoubleWord()
96 pythonRunner.Request.length = 4; in WriteDoubleWord()
102 pythonRunner.Request.length = 8; in ReadQuadWord()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitor.cs88 pythonRunner = new MonitorPythonEngine(this); in Monitor()
89 Quitted += pythonRunner.Dispose; in Monitor()
214 …var includeCommand = new IncludeFileCommand(this, (x, y) => pythonRunner.TryExecutePythonScript(x,… in InitCommands()
238 …thonExecuteCommand(this, x => ExpandVariable(x, variables), (x, y) => pythonRunner.ExecutePythonCo… in InitCommands()
688 return pythonRunner.ExecutePythonCommand(command, Interaction); in ExecutePythonCommand()
842 if(!pythonRunner.ExecuteBuiltinCommand(ExpandVariables(com).ToArray(), writer)) in ExecuteCommand()
1031 sugg.AddRange(pythonRunner.GetPythonCommands()); in SuggestCommands()
1220 private readonly MonitorPythonEngine pythonRunner; field in Antmicro.Renode.UserInterface.Monitor
DMonitorCommands.cs247 foreach(var command in pythonRunner.GetPythonCommands()) in PrintPython()