Home
last modified time | relevance | path

Searched refs:WriteError (Results 1 – 16 of 16) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DResdCommand.cs49 … writer.WriteError($"RESD file with identifier {internalName.Value} is already loaded"); in Run()
59 writer.WriteError($"Could not load RESD file: {e}"); in Run()
90 writer.WriteError($"{property.Value} is not a valid property."); in Run()
91 writer.WriteError($"Valid properties are: {RESDPropertyNames}"); in Run()
124 writer.WriteError($"{startTimeString.Value} is invalid time-interval"); in Run()
143 writer.WriteError($"{range.Value} is invalid range"); in Run()
154 writer.WriteError($"{range.Value} is invalid range"); in Run()
172 writer.WriteError($"{startTimeString.Value} is invalid time-interval"); in Run()
177 writer.WriteError($"{endTimeString.Value} is invalid time-interval"); in Run()
255 writer.WriteError($"RESD file with identifier {internalName} doesn't exist"); in TryGetResdFile()
[all …]
DAnalyzersCommand.cs42 writer.WriteError(string.Format("Peripheral not found: {0}", peripheralName.Value)); in Run()
49 writer.WriteError(string.Format("No backend found for {0}", peripheralName.Value)); in Run()
70 writer.WriteError(string.Format("Peripheral not found: {0}", peripheralName.Value)); in Run()
77 writer.WriteError(string.Format("No backend found for {0}", peripheralName.Value)); in Run()
DMachCommand.cs27 writer.WriteError("No machine selected."); in PrintHelp()
63 …writer.WriteError("Wrong machine number. Type {0} to show a list of available machines.".FormatWit… in Run()
85 writer.WriteError(string.Format("Machine {0} not found.", name.Value)); in Run()
93 writer.WriteError(string.Format("Machine {0} not found.", name.Value)); in Run()
DWatchCommand.cs30 writer.WriteError("Watch command can be used on a full-featured terminal only"); in Run()
44 writer.WriteError(error); in Run()
DNetworkLoggerCommand.cs22 writer.WriteError("\nYou must specify the port number for the logger's socket."); in PrintHelp()
DLoggerFileCommand.cs23 … writer.WriteError("\nYou must specify the filename (full path or relative) for output file."); in PrintHelp()
DPythonExecuteCommand.cs35 writer.WriteError("Variable type has to be a string."); in Run()
DHelpCommand.cs38 writer.WriteError(String.Format("No such command: {0}.", commandName.Value)); in CommandHelp()
DCreatePlatformCommand.cs55 writer.WriteError("Invalid platform type: " + type); in Execute()
DDisplayImageCommand.cs71 writer.WriteError("Bad image format. Supported formats: jpeg, png"); in Run()
DLogLevelCommand.cs155 …writer.WriteError(string.Format("Could not find emulation element or backend named: {0}", emulatio… in RunInner()
163 writer.WriteError(string.Format("Could not find emulation element or backend")); in RunInner()
DPeripheralsCommand.cs28 writer.WriteError("Select active machine."); in Run()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DCommandInteractionEater.cs56 public void WriteError(string msg) in WriteError() method in Antmicro.Renode.UserInterface.CommandInteractionWrapper
59 underlyingCommandInteraction.WriteError(msg); in WriteError()
84 public void WriteError(string error) in WriteError() method in Antmicro.Renode.UserInterface.CommandInteractionEater
139 public void WriteError(string error) in WriteError() method in Antmicro.Renode.UserInterface.DummyCommandInteraction
DMonitor.cs297 writer.WriteError($"No such variable: ${lastVariableToken.Value}"); in Tokenize()
307 writer.WriteError(message); in Tokenize()
310 writer.WriteError(cmd); in Tokenize()
315 writer.WriteError(padded); in Tokenize()
320 writer.WriteError(result.Exception.Message); in Tokenize()
342 writer.WriteError(eater.GetError()); in ExecuteWithResult()
392 … writer.WriteError("Failed to download {0}, see log for details.".FormatWith(fname)); in ParseTokens()
594 …writer.WriteError("Errors during compilation or loading:\r\n" + e.Message.Replace(Environment.NewL… in TryCompilePlugin()
630 writer.WriteError($"Could not find file '{originalFilename}'"); in TryExecuteScript()
716 writer.WriteError(e.Message.Replace("\n", "\r\n").Indent(tab, '\t')); in PrintExceptionDetails()
[all …]
DMonitorPythonEngine.cs109 … writer.WriteError(String.Format("Command {0} failed, returning \"{1}\".", command_name, result)); in ExecuteBuiltinCommand()
185 …streamToEventConverterForError.BytesWritten += bytes => writer.WriteError(utf8WithoutBom.GetString… in ConfigureOutput()
DMonitorCommands.cs233 …writer.WriteError(String.Format("Bad parameters for command {0} {1}", command.Name, string.Join(" … in RunCommand()