Lines Matching refs:Commands
22 using AntShell.Commands;
24 using Antmicro.Renode.UserInterface.Commands;
83 Commands = new HashSet<Command>(new CommandComparer()); in Monitor()
187 if(Commands.Contains(command)) in RegisterCommand()
192 Commands.Add(command); in RegisterCommand()
197 if(!Commands.Contains(command)) in UnregisterCommand()
202 Commands.Remove(command); in UnregisterCommand()
215 Commands.Add(new HelpCommand(this, () => in InitCommands()
218 var result = Commands.Cast<ICommandDescription>(); in InitCommands()
225 Commands.Add(includeCommand); in InitCommands()
226 Commands.Add(new CreatePlatformCommand(this, x => currentMachine = x)); in InitCommands()
227 Commands.Add(new UsingCommand(this, () => usings)); in InitCommands()
228 Commands.Add(new QuitCommand(this, x => currentMachine = x, () => Quitted)); in InitCommands()
229 Commands.Add(new PeripheralsCommand(this, () => currentMachine)); in InitCommands()
230 Commands.Add(new MonitorPathCommand(this, monitorPath)); in InitCommands()
231 Commands.Add(new StartCommand(this, includeCommand)); in InitCommands()
232 …Commands.Add(new SetCommand(this, "set", "VARIABLE", (x, y) => SetVariable(x, y, variables), (x, y… in InitCommands()
234 …Commands.Add(new SetCommand(this, "macro", "MACRO", (x, y) => SetVariable(x, y, macros), (x, y) =>… in InitCommands()
236 …Commands.Add(new SetCommand(this, "alias", "ALIAS", (x, y) => SetVariable(x, y, aliases), (x, y) =… in InitCommands()
238 …Commands.Add(new PythonExecuteCommand(this, x => ExpandVariable(x, variables), (x, y) => pythonRun… in InitCommands()
239 …Commands.Add(new ExecuteCommand(this, "execute", "VARIABLE", x => ExpandVariable(x, variables), ()… in InitCommands()
240 …Commands.Add(new ExecuteCommand(this, "runMacro", "MACRO", x => ExpandVariable(x, macros), () => m… in InitCommands()
241 Commands.Add(new MachCommand(this, () => currentMachine, x => currentMachine = x)); in InitCommands()
242 Commands.Add(new ResdCommand(this)); in InitCommands()
243 Commands.Add(new VerboseCommand(this, x => verboseMode = x)); in InitCommands()
803 (Commands.OfType<SetCommand>().First()).Run(writer, variableToExpand, com[2]); in ExecuteCommand()
814 var commandHandler = Commands.FirstOrDefault(x => x.Name == command.Value); in ExecuteCommand()
829 foreach(var item in Commands) in ExecuteCommand()
995 …var cmd = Commands.SingleOrDefault(c => c.Name == currentCommandSplit[0] || c.AlternativeNames.Con… in SuggestCommands()
1028 var sugg = Commands.Select(x => x.Name).ToList(); in SuggestCommands()
1154 return Commands;
1218 private HashSet<Command> Commands { get; set; } property in Antmicro.Renode.UserInterface.Monitor