Home
last modified time | relevance | path

Searched refs:errors (Results 1 – 3 of 3) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/S32K3XX_FlexIO/
DS32K3XX_FlexIO_UART.cs34 var errors = new List<string>(); in RegisterInFlexIO()
36 if(TryReserveShifter(flexIO, rxShifterId, out var shifter, errors, nameof(rxShifterId))) in RegisterInFlexIO()
41 if(TryReserveShifter(flexIO, txShifterId, out shifter, errors, nameof(txShifterId))) in RegisterInFlexIO()
47 if(errors.Count > 0) in RegisterInFlexIO()
49 throw new ConstructionException(String.Join(" ", errors)); in RegisterInFlexIO()
76 …fter(S32K3XX_FlexIO flexIO, uint? id, out Shifter shifter, IList<string> errors, string parameterN… in TryReserveShifter() argument
86errors.Add($"Invalid {parameterName}, unable to reserve shifter with the {id.Value} identifier."); in TryReserveShifter()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/Utilities/
DThreadSyncTester.cs18 errors = new List<string>(); in ThreadSyncTester()
34 errors.Add(errorString); in ReportError()
62 if(errors.Count > 0) in Finish()
64 Assert.Fail("Got errors:\n" + string.Join("\n", errors)); in Finish()
73 private readonly List<string> errors; field in Antmicro.Renode.UnitTests.Utilities.ThreadSyncTester
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Mocks/
DHPSHostController.cs373 var errors = ReadErrorBytes(timeInterval); in PollForError()
374 if(errors[0] + errors[1] != 0x00) in PollForError()