| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/ |
| D | CommandInteractionEater.cs | 21 error = new StringBuilder(); in CommandInteractionWrapper() 27 error.Clear(); in Clear() 37 return error.ToString(); in GetError() 58 error.Append(msg); in WriteError() 68 private readonly StringBuilder error; field in Antmicro.Renode.UserInterface.CommandInteractionWrapper 76 error.Clear(); in Clear() 84 public void WriteError(string error) in WriteError() argument 86 this.error.AppendLine(error); in WriteError() 98 public bool HasError => error.Length > 0; 107 return error.ToString(); in GetError() [all …]
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Hooks/ |
| D | BlockPythonEngine.cs | 32 Execute(code, error => in BlockPythonEngine() 34 CPU.Log(LogLevel.Error, "Python runtime error: {0}", error); in BlockPythonEngine() 42 Execute(code, error => in BlockPythonEngine() 44 CPU.Log(LogLevel.Error, "Python runtime error: {0}", error); in BlockPythonEngine()
|
| D | BusPeripheralsHooksPythonEngine.cs | 36 Execute(writeCode, error => in BusPeripheralsHooksPythonEngine() 38 Sysbus.Log(LogLevel.Error, "Python runtime error: {0}", error); in BusPeripheralsHooksPythonEngine() 50 Execute(readCode, error => in BusPeripheralsHooksPythonEngine() 52 Sysbus.Log(LogLevel.Error, "Python runtime error: {0}", error); in BusPeripheralsHooksPythonEngine()
|
| D | GPIOPythonEngine.cs | 30 Execute(code, error => in GPIOPythonEngine() 32 Logger.Log(LogLevel.Error, "Python runtime error: {0}", error); in GPIOPythonEngine()
|
| D | PSCIPythonEngine.cs | 30 Execute(code, error => in PSCIPythonEngine() 32 Logger.Log(LogLevel.Error, "Python runtime error: {0}", error); in PSCIPythonEngine()
|
| D | SyncPointHookPythonEngine.cs | 30 Execute(code, error => in SyncPointHookPythonEngine() 32 Logger.Log(LogLevel.Error, "Python runtime error: {0}", error); in SyncPointHookPythonEngine()
|
| D | UserStatePythonEngine.cs | 31 Execute(code, error => in UserStatePythonEngine() 33 Logger.Log(LogLevel.Error, "Python runtime error: {0}", error); in UserStatePythonEngine()
|
| D | InterruptPythonEngine.cs | 31 Execute(code, error => in InterruptPythonEngine() 33 this.cpu.Log(LogLevel.Error, "Python runtime error: {0}", error); in InterruptPythonEngine()
|
| D | WFIPythonEngine.cs | 31 Execute(code, error => in WFIPythonEngine() 33 this.cpu.Log(LogLevel.Error, "Python runtime error: {0}", error); in WFIPythonEngine()
|
| D | WatchpointHookPythonEngine.cs | 33 Execute(code, error => in WatchpointHookPythonEngine() 35 this.sysbus.Log(LogLevel.Error, "Python runtime error: {0}", error); in WatchpointHookPythonEngine()
|
| D | RegisterCollectionHookPythonEngine.cs | 32 Execute(code, error => in RegisterCollectionHookPythonEngine() 34 Logger.Log(LogLevel.Error, "Python runtime error: {0}", error); in RegisterCollectionHookPythonEngine()
|
| D | UartPythonEngine.cs | 33 Execute(code, error => in UartPythonEngine() 35 Uart.Log(LogLevel.Error, "Python runtime error: {0}", error); in UartPythonEngine()
|
| D | PacketInterceptionPythonEngine.cs | 40 Execute(code, error => in PacketInterceptionPythonEngine() 42 this.radio.Log(LogLevel.Error, "Python runtime error: {0}", error); in PacketInterceptionPythonEngine()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/UI/ |
| D | Options.cs | 58 public bool Validate(out string error) in Validate() argument 62 error = "--hide-monitor and --console cannot be set at the same time"; in Validate() 71 error = null; in Validate()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/ |
| D | WatchCommand.cs | 41 var error = eater.GetError(); in Run() 42 if(error.Length > 0) in Run() 44 writer.WriteError(error); in Run()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/ |
| D | RiscVCsrPythonEngine.cs | 47 Execute(code, error => in RiscVCsrPythonEngine() 49 this.cpu.Log(LogLevel.Error, "Python runtime error: {0}", error); in RiscVCsrPythonEngine() 59 Execute(code, error => in RiscVCsrPythonEngine() 61 this.cpu.Log(LogLevel.Error, "Python runtime error: {0}", error); in RiscVCsrPythonEngine()
|
| D | RiscVInstructionPythonEngine.cs | 41 Execute(code, error => in RiscVInstructionPythonEngine() 43 this.cpu.Log(LogLevel.Error, "Python runtime error: {0}", error); in RiscVInstructionPythonEngine()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/ |
| D | PythonEngine.cs | 162 return Compile(source, error => throw new RecoverableException(error)); in Compile() 172 … Execute(code, error => throw new RecoverableException($"Python runtime error: {error}")); in Execute()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/Assembler/ |
| D | LLVMAssembler.cs | 44 var error = Marshal.PtrToStringAnsi(output); in AssembleBlock() 46 … throw new RecoverableException(string.Format("Failed to assemble. Reason: {0}", error)); in AssembleBlock()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | CachingFileFetcher.cs | 172 if(!TryDownloadInner(uri, fileName, out var error)) in TryDownload() 174 if(error == null) in TryDownload() 181 var webException = error as WebException; in TryDownload() 182 …2}/{3})", uri, webException != null ? ResolveWebException(webException) : error.Message, attempts … in TryDownload() 197 private bool TryDownloadInner(Uri uri, string fileName, out Exception error) in TryDownloadInner() argument 237 error = localError; in TryDownloadInner() 241 return !wasCancelled && error == null; in TryDownloadInner()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/S32K3XX_FlexIO/ |
| D | Shifter.cs | 72 …tatic Shifter BuildShifter(IResourceBlockOwner owner, int index, Interrupt status, Interrupt error, in BuildShifter() argument 119 error, in BuildShifter() 144 Interrupt status, Interrupt error, in Shifter() argument 151 Error = error; in Shifter()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/ |
| D | OpenTitan_OneTimeProgrammableMemoryController.cs | 386 private void RaisePartitionError(Error error, OtpPartition partition) in RaisePartitionError() argument 391 vendorPartitionError.Value = error; in RaisePartitionError() 395 ownerPartitionError.Value = error; in RaisePartitionError() 399 creatorPartitionError.Value = error; in RaisePartitionError() 403 hardwarePartitionError.Value = error; in RaisePartitionError() 407 secret0PartitionError.Value = error; in RaisePartitionError() 411 secret1PartitionError.Value = error; in RaisePartitionError() 415 secret2PartitionError.Value = error; in RaisePartitionError() 419 lifeCyclePartitionError.Value = error; in RaisePartitionError()
|
| D | OpenTitan_KMAC.cs | 638 var error = false; in CheckComandSequence() 644 error = previousCommand != Command.Done; in CheckComandSequence() 647 error = previousCommand != Command.Start; in CheckComandSequence() 651 error = previousCommand != Command.Process && previousCommand != Command.Run; in CheckComandSequence() 654 error = true; in CheckComandSequence()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CAN/ |
| D | SocketCANBridge.cs | 118 var error = Marshal.GetLastWin32Error(); in TryEnableSocketOption() 119 if(ensure || error != ProtocolNotAvailableError) in TryEnableSocketOption()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/HostInterfaces/Network/ |
| D | WindowsTapInterface.cs | 197 int error = Marshal.GetLastWin32Error(); in Init() 198 if(error != 0) in Init()
|