Home
last modified time | relevance | path

Searched refs:error (Results 1 – 25 of 27) sorted by relevance

12

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DCommandInteractionEater.cs21 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/
DBlockPythonEngine.cs32 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()
DBusPeripheralsHooksPythonEngine.cs36 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()
DGPIOPythonEngine.cs30 Execute(code, error => in GPIOPythonEngine()
32 Logger.Log(LogLevel.Error, "Python runtime error: {0}", error); in GPIOPythonEngine()
DPSCIPythonEngine.cs30 Execute(code, error => in PSCIPythonEngine()
32 Logger.Log(LogLevel.Error, "Python runtime error: {0}", error); in PSCIPythonEngine()
DSyncPointHookPythonEngine.cs30 Execute(code, error => in SyncPointHookPythonEngine()
32 Logger.Log(LogLevel.Error, "Python runtime error: {0}", error); in SyncPointHookPythonEngine()
DUserStatePythonEngine.cs31 Execute(code, error => in UserStatePythonEngine()
33 Logger.Log(LogLevel.Error, "Python runtime error: {0}", error); in UserStatePythonEngine()
DInterruptPythonEngine.cs31 Execute(code, error => in InterruptPythonEngine()
33 this.cpu.Log(LogLevel.Error, "Python runtime error: {0}", error); in InterruptPythonEngine()
DWFIPythonEngine.cs31 Execute(code, error => in WFIPythonEngine()
33 this.cpu.Log(LogLevel.Error, "Python runtime error: {0}", error); in WFIPythonEngine()
DWatchpointHookPythonEngine.cs33 Execute(code, error => in WatchpointHookPythonEngine()
35 this.sysbus.Log(LogLevel.Error, "Python runtime error: {0}", error); in WatchpointHookPythonEngine()
DRegisterCollectionHookPythonEngine.cs32 Execute(code, error => in RegisterCollectionHookPythonEngine()
34 Logger.Log(LogLevel.Error, "Python runtime error: {0}", error); in RegisterCollectionHookPythonEngine()
DUartPythonEngine.cs33 Execute(code, error => in UartPythonEngine()
35 Uart.Log(LogLevel.Error, "Python runtime error: {0}", error); in UartPythonEngine()
DPacketInterceptionPythonEngine.cs40 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/
DOptions.cs58 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/
DWatchCommand.cs41 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/
DRiscVCsrPythonEngine.cs47 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()
DRiscVInstructionPythonEngine.cs41 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/
DPythonEngine.cs162 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/
DLLVMAssembler.cs44 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/
DCachingFileFetcher.cs172 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/
DShifter.cs72 …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/
DOpenTitan_OneTimeProgrammableMemoryController.cs386 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()
DOpenTitan_KMAC.cs638 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/
DSocketCANBridge.cs118 var error = Marshal.GetLastWin32Error(); in TryEnableSocketOption()
119 if(ensure || error != ProtocolNotAvailableError) in TryEnableSocketOption()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/HostInterfaces/Network/
DWindowsTapInterface.cs197 int error = Marshal.GetLastWin32Error(); in Init()
198 if(error != 0) in Init()

12