Home
last modified time | relevance | path

Searched refs:FormatWith (Results 1 – 25 of 38) sorted by relevance

12

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DExecuteCommand.cs23 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()
DSetCommand.cs25 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()
DMachCommand.cs63 …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/
DTraceCommand.cs34 … 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/
DPluginManager.cs155 …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/
DICPUWithRegisters.cs86 …table.AddRows(result, x => " {0} ".FormatWith(x.Item1), x => " {0} ".FormatWith(x.Item2), x => " 0… in GetRegistersValues()
DICPU.cs55 …return "{0}{1}[{2}]".FormatWith(machineName, machine.GetLocalName(cpu), machine.SystemBus.GetCPUSl… in GetCPUThreadName()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DPosixFileLocker.cs24 throw new InvalidOperationException("File {0} not locked.".FormatWith(file)); in PosixFileLocker()
32 throw new InvalidOperationException("File {0} not unlocked.".FormatWith(file)); in Dispose()
DPluginDescriptor.cs43 return "{0}:{1}:{2}".FormatWith(Name, Version, Vendor);
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/Registers/
DPeripheralRegister.cs794 .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()
DRegisterField.cs202 …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/
DSI70xx.cs78 …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, …
DMAX6682MUA.cs57 …overableException("The temperature value must be between {0} and {1}.".FormatWith(MinTemperature, …
DTI_LM74.cs59 …overableException("The temperature value must be between {0} and {1}.".FormatWith(MinTemperature, …
DOV2640.cs195 return "{0} (0x{1:X})".FormatWith(sensorRegisterBankSelected in DecodeRegister()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/
DMachineExtensions.cs31 …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/
DSymbol.cs245 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/
DOpenTitan_ROMController.cs108 … 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/
DLBABackend.cs26 … RecoverableException(new FileNotFoundException("File not found: {0}.".FormatWith(underlyingFile),… in LBABackend()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitorExecutorExtensions.cs100 … RecoverableException("Periodic event '{0}' already registered in this machine.".FormatWith(name)); in Add()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Input/
DFT5336.cs68 …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/
DComparingTimer.cs132 …throw new InvalidOperationException(CompareHigherThanLimitMessage.FormatWith(value, initialLimit));
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Debug/
DCPUTracer.cs42 … throw new RecoverableException("Function {0} is already being traced.".FormatWith(name)); in TraceFunction()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Testing/
DTerminalTester.cs148 …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/
DUDMA.cs289 … throw new ArgumentException("Unhandled increment value {0}.".FormatWith(value)); in IncrementHelper()

12