| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/ |
| D | ExecuteCommand.cs | 23 writer.WriteLine("Provide a command or {0} to execute.".FormatWith(noun)); in PrintHelp() 25 writer.WriteLine("Available {0}s:".FormatWith(noun)); in PrintHelp() 28 writer.WriteLine("\t{0}".FormatWith(variable)); in PrintHelp() 55 …> getVariables):base(monitor, name, "executes a command or the content of a {0}.".FormatWith(noun)) in ExecuteCommand()
|
| D | SetCommand.cs | 25 writer.WriteLine("You must provide the name of the {0}.".FormatWith(noun)); in PrintHelp() 96 … Func<string, string> getVariableName) : base(monitor, name, "sets {0}.".FormatWith(noun)) in SetCommand()
|
| D | MachCommand.cs | 63 …riteError("Wrong machine number. Type {0} to show a list of available machines.".FormatWith(Name)); in Run()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Plugins/TracePlugin/ |
| D | TraceCommand.cs | 34 … writer.WriteLine("{0} {1} cpuName \"functionName\"".FormatWith(Name, TraceEnableCommand)); in PrintHelp() 37 … writer.WriteLine("{0} {1} cpuName \"functionName\" true".FormatWith(Name, TraceEnableCommand)); in PrintHelp() 40 …"{0} {1} cpuName \"functionName\" [true|false] [number of parameters]".FormatWith(Name, TraceEnabl… in PrintHelp() 43 …} {1} cpuName \"functionName\" [true|false] [list of parameter types]".FormatWith(Name, TraceEnabl… in PrintHelp() 47 … writer.WriteLine("{0} {1} cpuName \"functionName\"".FormatWith(Name, TraceDisableCommand)); in PrintHelp() 95 … throw new RecoverableException("{0} is not a proper parameter type.".FormatWith(parameter.Value)); in Run() 116 … throw new RecoverableException("Function \"{0}\" already registered.".FormatWith(function)); in RegisterFunctionName() 138 …return "{0}.{1}-{2}".FormatWith(EmulationManager.Instance.CurrentEmulation[cpu.Bus.Machine], cpuNa… in FindTracerName() 170 …t register. You must provide numberOfParameters to use default handler.".FormatWith(functionName)); in Execute()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Plugins/ |
| D | PluginManager.cs | 155 …throw new RecoverableException("Plugin {0} not found.".FormatWith(referencedPlugin.GetFullNameOfMe… in EnablePlugin() 159 …RecoverableException("Circular plugin dependency between {0} and {1}.".FormatWith(plugin.FullName,… in EnablePlugin() 187 throw new RecoverableException("Malformed plugin name \"{0}\"".FormatWith(name)); in FindPluginFromName() 196 … .FormatWith(name, plugins.Select(x => "\"{0}\"".FormatWith(x.FullName)).Stringify(", ")))); in FindPluginFromName() 221 …entException("Generic parameters in plugin of type {0} not supported.".FormatWith(t1.HasGenericPar… in Equals()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/CPU/ |
| D | ICPUWithRegisters.cs | 86 …table.AddRows(result, x => " {0} ".FormatWith(x.Item1), x => " {0} ".FormatWith(x.Item2), x => " 0… in GetRegistersValues()
|
| D | ICPU.cs | 55 …return "{0}{1}[{2}]".FormatWith(machineName, machine.GetLocalName(cpu), machine.SystemBus.GetCPUSl… in GetCPUThreadName()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | PosixFileLocker.cs | 24 throw new InvalidOperationException("File {0} not locked.".FormatWith(file)); in PosixFileLocker() 32 throw new InvalidOperationException("File {0} not unlocked.".FormatWith(file)); in Dispose()
|
| D | PluginDescriptor.cs | 43 return "{0}:{1}:{2}".FormatWith(Name, Version, Vendor);
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/Registers/ |
| D | PeripheralRegister.cs | 794 .FormatWith(tagsAffected.Any() ? " Tags: {0}.".FormatWith( in TagLogger() 795 …tagsAffected.Select(x => "{0} (0x{1:X})".FormatWith(x.Name, x.Value)).Stringify(", ")) : String.Em… in TagLogger() 842 …{0} has to have a size larger than or equal to 0.".FormatWith(name ?? "at {0} of {1} bits".FormatW… in ThrowIfRangeIllegal() 846 …ion("Field {0} does not fit in the register size.".FormatWith(name ?? "at {0} of {1} bits".FormatW… in ThrowIfRangeIllegal() 854 …ception("Field {0} intersects with another range.".FormatWith(name ?? "at {0} of {1} bits".FormatW… in ThrowIfRangeIllegal() 863 …ion("Field {0} has to have a size not equal to 0.".FormatWith(name ?? "at {0} of {1} bits".FormatW… in ThrowIfZeroWidth()
|
| D | RegisterField.cs | 202 …new ConstructionException("Invalid {0} flags for register field: {1}.".FormatWith(fieldMode.GetTyp… in RegisterField()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/ |
| D | SI70xx.cs | 78 …RecoverableException("The humidity value must be between {0} and {1}.".FormatWith(MinHumidity, Max… 94 …overableException("The temperature value must be between {0} and {1}.".FormatWith(MinTemperature, …
|
| D | MAX6682MUA.cs | 57 …overableException("The temperature value must be between {0} and {1}.".FormatWith(MinTemperature, …
|
| D | TI_LM74.cs | 59 …overableException("The temperature value must be between {0} and {1}.".FormatWith(MinTemperature, …
|
| D | OV2640.cs | 195 return "{0} (0x{1:X})".FormatWith(sensorRegisterBankSelected in DecodeRegister()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/ |
| D | MachineExtensions.cs | 31 …tion("Cannot load devices configuration from file {0} as it does not exist.".FormatWith(fileName)); in LoadPeripheralsFromJSONFile() 57 throw new RecoverableException("FDT file {0} not found".FormatWith(file)); in LoadFdt()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/ |
| D | Symbol.cs | 245 return "{0} (entry)".FormatWith(this.Name); in ToStringRelative() 249 … return "{0}+0x{1:X} (guessed)".FormatWith(this.Name, offset.RawValue - this.Start.RawValue); in ToStringRelative()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MemoryControllers/ |
| D | OpenTitan_ROMController.cs | 108 … return "{0:X16}".FormatWith((dataNonce >> romIndexWidth) | (addressKey << (64 - romIndexWidth))); 123 return key.Select(x => "{0:X16}".FormatWith(x)).Stringify();
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Storage/ |
| D | LBABackend.cs | 26 … RecoverableException(new FileNotFoundException("File not found: {0}.".FormatWith(underlyingFile),… in LBABackend()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/ |
| D | MonitorExecutorExtensions.cs | 100 … RecoverableException("Periodic event '{0}' already registered in this machine.".FormatWith(name)); in Add()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Input/ |
| D | FT5336.cs | 68 …data.Length == 1 ? String.Empty : ", values {0}".FormatWith(data.Skip(1).Select(x => "0x" + x.ToSt… in Write()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Timers/ |
| D | ComparingTimer.cs | 132 …throw new InvalidOperationException(CompareHigherThanLimitMessage.FormatWith(value, initialLimit));
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Debug/ |
| D | CPUTracer.cs | 42 … throw new RecoverableException("Function {0} is already being traced.".FormatWith(name)); in TraceFunction()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Testing/ |
| D | TerminalTester.cs | 148 …var eventName = "Line containing{1} >>{0}<<".FormatWith(pattern, treatAsRegex ? " regex" : string.… in WaitFor() 407 …var eventName = "Lines starting with{1} >>{0}<<".FormatWith(patterns[0], treatAsRegex ? " regex" :… in WaitForMultilineMatch()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/ |
| D | UDMA.cs | 289 … throw new ArgumentException("Unhandled increment value {0}.".FormatWith(value)); in IncrementHelper()
|