Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DMonitorPathCommand.cs22 … writer.WriteLine(string.Format("Default 'PATH' value is: {0}", monitorPath.DefaultPath)); in PrintHelp()
31 writer.WriteLine(string.Format("Current 'PATH' value is: {0}", monitorPath.Path)); in PrintCurrentPath()
40 monitorPath.Path = path.Value; in SetOrAdd()
43 monitorPath.Append(path.Value); in SetOrAdd()
52 monitorPath.Reset(); in Reset()
56 MonitorPath monitorPath; field in Antmicro.Renode.UserInterface.Commands.MonitorPathCommand
59 monitorPath = path; in MonitorPathCommand()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitorPythonEngine.cs41 var monitorPath = Path.Combine(rootPath, MonitorPyPath); in MonitorPythonEngine()
42 if(File.Exists(monitorPath)) in MonitorPythonEngine()
44 var script = Engine.CreateScriptSourceFromFile(monitorPath); // standard lib in MonitorPythonEngine()
46 … Logging.Logger.Log(Logging.LogLevel.Info, "Loaded monitor commands from: {0}", monitorPath); in MonitorPythonEngine()
DMonitor.cs67 return monitorPath.PathElements;
72 private MonitorPath monitorPath = new MonitorPath(Environment.CurrentDirectory); field in Antmicro.Renode.UserInterface.Monitor
116 monitorPath.Reset(); in Monitor()
230 Commands.Add(new MonitorPathCommand(this, monitorPath)); in InitCommands()
700 foreach(var pathElement in monitorPath.PathElements.Prepend(String.Empty)) in TryGetFilenameFromAvailablePaths()
961 … foreach(var pathEntry in monitorPath.PathElements.Select(x => Path.GetFullPath(x))) in SuggestCommands()