Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DHelpCommand.cs34 public void CommandHelp(ICommandInteraction writer, LiteralToken commandName) in CommandHelp() argument
36 if(!GetCommands().Any(x => x.Name == commandName.Value)) in CommandHelp()
38 writer.WriteError(String.Format("No such command: {0}.", commandName.Value)); in CommandHelp()
41 var command = GetCommands().First(x => x.Name == commandName.Value); in CommandHelp()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/
DDA16200.cs82 var commandName = connection.Type == ConnectionType.UDP ? "TRDUS" : "TRDTC"; in ReceiveData()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitor.cs736 private void PrintException(string commandName, Exception e, ICommandInteraction writer) in PrintException() argument
738 … writer.WriteError(string.Format("There was an error executing command '{0}'", commandName)); in PrintException()