| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Mocks/ |
| D | HPSHostController.cs | 527 table.AddRow(string.Empty, "15", string.Empty, string.Empty); in FormatSystemStatus() 528 table.AddRow(string.Empty, "14", string.Empty, string.Empty); in FormatSystemStatus() 535 table.AddRow(string.Empty, "7", string.Empty, string.Empty); in FormatSystemStatus() 536 table.AddRow(string.Empty, "6", string.Empty, string.Empty); in FormatSystemStatus() 540 table.AddRow(string.Empty, "2", string.Empty, string.Empty); in FormatSystemStatus() 553 table.AddRow(string.Empty, "15", string.Empty, string.Empty); in FormatCommonErrorStatus() 554 table.AddRow(string.Empty, "14", string.Empty, string.Empty); in FormatCommonErrorStatus() 555 table.AddRow(string.Empty, "13", string.Empty, string.Empty); in FormatCommonErrorStatus() 556 table.AddRow(string.Empty, "12", string.Empty, string.Empty); in FormatCommonErrorStatus() 557 table.AddRow(string.Empty, "11", string.Empty, string.Empty); in FormatCommonErrorStatus() [all …]
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/ |
| D | CoreTimerTest.cs | 26 …var timer = new LimitTimer(manualClockSource, 100, null, String.Empty, 100000, Direction.Ascending… in ShouldBeAscending() 41 …var timer = new LimitTimer(manualClockSource, 100, null, String.Empty, 100000, Direction.Descendin… in ShouldBeDescending() 57 …var timer = new LimitTimer(manualClockSource, 1, null, String.Empty, limit, Direction.Ascending, t… in ShouldNotExceedLimitAscending() 73 …var timer = new LimitTimer(manualClockSource, 1, null, String.Empty, limit, Direction.Descending, … in ShouldNotExceedLimitDescending() 91 …var timer = new LimitTimer(manualClockSource, 1000000, null, String.Empty, limit, Direction.Descen… in ShouldHandleMicrosecondPrecisionTimerEvents() 107 …var timer = new LimitTimer(manualClockSource, 10000000, null, String.Empty, limit, Direction.Desce… in ShouldHandleSubMicrosecondPrecisionTimerEvents() 120 …var timer = new LimitTimer(manualClockSource, 100, null, String.Empty, 100000, Direction.Ascending… in ShouldSwitchDirectionProperly() 134 …var timer = new LimitTimer(manualClockSource, 1, null, String.Empty, 10, Direction.Descending, tru… in ShouldNotFireAlarmWhenInterruptsAreDisabled() 145 …var timer = new LimitTimer(manualClockSource, 1, null, String.Empty, 10, Direction.Descending, tru… in ShouldFireAlarmWhenInterruptsAreEnabled()
|
| D | TimeTests.cs | 24 …clocksource.AddClockEntry(new ClockEntry(2, 1, () => counter++, null, String.Empty) { Value = 0 }); in ShouldTickWithOneHandler() 42 …clocksource.AddClockEntry(new ClockEntry(2, 1, () => counterA++, null, String.Empty) { Value = 0 }… in ShouldTickWithTwoHandlers() 43 …clocksource.AddClockEntry(new ClockEntry(5, 1, () => counterB++, null, String.Empty) { Value = 0 }… in ShouldTickWithTwoHandlers() 68 clockSource.AddClockEntry(new ClockEntry(10000, 10, firstHandler, null, String.Empty)); in ShouldHaveHandlersInSync() 69 …Entry(10, 1, () => values.Add(clockSource.GetClockEntry(firstHandler).Value), null, String.Empty)); in ShouldHaveHandlersInSync() 86 ClockEntry entryA = new ClockEntry(1000, 1, handlerA, null, String.Empty) { Value = 0 }; in ShouldObserveShorterPeriodClockAfterAdd() 87 ClockEntry entryB = new ClockEntry(100, 1, handlerB, null, String.Empty) { Value = 0 }; in ShouldObserveShorterPeriodClockAfterAdd()
|
| D | TimeHandleTests.cs | 70 ShouldWaitReturn(false, false, TimeInterval.Empty); in WaitShouldNotBlockIfThereWasNoRequest() 281 RequestOnSink().ShouldFinish(Tuple.Create(false, TimeInterval.Empty)); in RequestShouldReturnDifferentValuesDependingOnSideEnabledState2() 313 ShouldRequestReturn(false, TimeInterval.Empty); in DisablingHanldeSinkSideShouldFinishRequest() 324 ShouldRequestReturn(false, TimeInterval.Empty); in DisablingHanldeSourceSideShouldFinishRequest() 334 ShouldRequestReturn(false, TimeInterval.Empty); in RequestShouldNotBlockOnDisabledHandle() 341 WaitOnSource().ShouldFinish(Tuple.Create(false, false, TimeInterval.Empty)); in BreakingShouldFinishWaiting3() 384 WaitOnSource().ShouldFinish(Tuple.Create(false, false, TimeInterval.Empty)); in ContinueShouldFinishWaiting() 487 ShouldRequestReturn(false, TimeInterval.Empty); in WaitShouldNotBlockOnDisabledHandle() 525 r.ShouldFinish(Tuple.Create(true, TimeInterval.Empty)); in ShouldUnblockHandle() 536 WaitOnSource().ShouldFinish(Tuple.Create(false, false, TimeInterval.Empty)); in SecondWaitShouldReturnEmptyIntervalOnBlockingHandle() [all …]
|
| D | ComparingTimerTests.cs | 22 … var timer = new ComparingTimer(new BaseClockSource(), 10, null, String.Empty, 20, compare: 5); in ShouldThrowOnCompareHigherThanLimit() 31 …var timer = new ComparingTimer(clockSource, 1000000, null, String.Empty, 65535 + 1, enabled: true,… in ShouldHandleCompareValueChangeWhenEnabled() 84 …ringTimer(clockSource, frequency: 1000000, owner: null, localName: String.Empty, limit: limit, ena… in ShouldClearWhenValueSetToZero() 107 … localName: String.Empty, limit: limit, enabled: true, eventEnabled: true, compare: compare); in ShouldGenerateCompareEventAtCompareAfterClear() 131 … localName: String.Empty, limit: limit, enabled: true, eventEnabled: true, compare: compare); in ShouldNotGenerateAdditionalCompareEvent()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/HID/ |
| D | Interface.cs | 43 return BitStream.Empty; in HandleRequest() 53 return BitStream.Empty; in HandleClassRequest() 56 return BitStream.Empty; in HandleClassRequest() 68 return BitStream.Empty; in HandleStandardRequest() 73 return BitStream.Empty; in HandleStandardRequest() 89 return BitStream.Empty; in HandleGetDescriptor()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Time/ |
| D | TimeHandle.cs | 281 interval = TimeInterval.Empty; in RequestTimeInterval() 286 …DebugHelper.Assert(reportedTimeResiduum == TimeInterval.Empty, "Reported time residuum should be e… in RequestTimeInterval() 288 slaveTimeResiduum = TimeInterval.Empty; in RequestTimeInterval() 317 if(reportedTimeResiduum != TimeInterval.Empty) in ReportProgress() 320 reportedTimeResiduum = TimeInterval.Empty; in ReportProgress() 351 …DebugHelper.Assert(slaveTimeResiduum == TimeInterval.Empty, "Time residuum should be empty here."); in ReportBackAndContinue() 411 ReportBackAndContinue(TimeInterval.Empty); in TrySkipToSyncPoint() 463 intervalToReport = TimeInterval.Empty; in WaitUntilDone() 481 intervalUsed = TimeInterval.Empty; in WaitUntilDone() 491 reportedTimeResiduum = TimeInterval.Empty; in WaitUntilDone() [all …]
|
| D | BaseClockSource.cs | 83 unaccountedTimes.Add(TimeInterval.Empty); in AddClockEntry() 104 unaccountedTimes.Add(TimeInterval.Empty); in ExchangeClockEntryWith() 150 unaccountedTimes[i] = TimeInterval.Empty; in GetClockEntry() 168 elapsed = TimeInterval.Empty; in GetClockEntry() 357 Update(TimeInterval.Empty, ref alreadyRunHandlers); in AdvanceInner() 361 elapsed = TimeInterval.Empty; in AdvanceInner() 376 AdvanceInner(TimeInterval.Empty, true); in UpdateLimits() 404 unaccountedTimes[i] = TimeInterval.Empty; in Update()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/ |
| D | USBString.cs | 18 Empty = new USBString(string.Empty, 0); in USBString() 26 return Empty; in FromString() 57 public static USBString Empty { get; } property in Antmicro.Renode.Core.USB.USBString
|
| D | USBDeviceCore.cs | 102 var result = BitStream.Empty; in HandleSetupPacket() 185 return BitStream.Empty; in HandleRequest() 201 return BitStream.Empty; in HandleGetDescriptor() 217 return BitStream.Empty; in HandleGetDescriptor() 225 return BitStream.Empty; in HandleGetDescriptor()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/GDB/ |
| D | PacketData.cs | 21 Empty = new PacketData(string.Empty); in PacketData() 47 … !address.HasValue ? string.Empty : string.Format("{0:X2}", address))); in StopReply() 53 … !address.HasValue ? string.Empty : string.Format("{0:X2}", address), cpuId)); in StopReply() 125 public static PacketData Empty { get; private set; } property in Antmicro.Renode.Utilities.GDB.PacketData
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/UART/ |
| D | USBSerialPort_S3B.cs | 32 …ldMode.Read, valueProviderCallback: _ => Count != 0 ? FifoPopFlags.EntryCout1 : FifoPopFlags.Empty) in USBSerialPort_S3B() 48 …ushFlags>(0, 4, FieldMode.Read, valueProviderCallback: _ => FifoPushFlags.Empty) // tx is always e… in USBSerialPort_S3B() 102 Empty = 0b0000, enumerator 119 Empty = 0b0001, enumerator
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/ |
| D | SymbolLookup.cs | 479 while(!source.Empty && cakeBase.Contains(source.Current)) in CopyCake() 492 while(!source.Empty) in CopyRest() 550 if(newSymbols.Empty) in AddSymbolWithHashing() 616 while(!oldSymbols.Empty && !newSymbols.Empty) in MergeInSymbolArray() 619 … while(!oldSymbols.Empty && !newSymbols.Empty && !oldSymbols.Current.Overlaps(newSymbols.Current)) in MergeInSymbolArray() 632 if(oldSymbols.Empty || newSymbols.Empty) in MergeInSymbolArray() 642 while(!oldSymbols.Empty && ( in MergeInSymbolArray() 655 while(!oldSymbols.Empty) in MergeInSymbolArray() 673 bool Empty { get; } property 706 public bool Empty property in Antmicro.Renode.Core.SymbolLookup.SortedIntervals.OldSymbolProvider [all …]
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/Backends/ |
| D | ConsoleBackend.cs | 40 ? string.Empty 43 return string.Empty;
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/MSC/ |
| D | Interface.cs | 31 return BitStream.Empty; in HandleRequest() 44 return BitStream.Empty; in HandleClassRequest()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/ |
| D | PropertyTagParser.cs | 31 string key = string.Empty; in GetNextTag() 32 string value = string.Empty; in GetNextTag()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Hooks/ |
| D | UartHooksExtensions.cs | 30 var currentLine = string.Empty; in AddLineHook() 39 currentLine = string.Empty; in AddLineHook()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/CDC/ |
| D | Interface.cs | 41 return BitStream.Empty; in HandleRequest() 48 return BitStream.Empty; in HandleClassRequest()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MemoryControllers/ |
| D | Gaisler_FaultTolerantMemoryController.cs | 41 Enumerable.Empty<NullRegistrationPoint>(); in GetRegistrationPoints() 65 Enumerable.Empty<NullRegistrationPoint>(); in GetRegistrationPoints() 90 Enumerable.Empty<IRegistered<MappedMemory, NullRegistrationPoint>>(); 97 Enumerable.Empty<IRegistered<AMDCFIFlash, NullRegistrationPoint>>();
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/ |
| D | PeripheralsCommand.cs | 113 …tString(UpdatePattern(pattern, Children.Count > 0 ? TreeViewBlock.Straight : TreeViewBlock.Empty)); in PrintTree() 159 case TreeViewBlock.Empty: in GetSingleIndentString() 187 pattern[pattern.Length - 1] = TreeViewBlock.Empty; in FixLastSign() 193 internal enum TreeViewBlock { Empty, Straight, End, Full }; enumerator
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CAN/S32K3XX_FlexCAN/ |
| D | S32K3XX_FlexCAN_Structures.cs | 92 Empty, enumerator 192 …messageBufferCode = RxMessageCode != RxCode.Empty ? (byte)RxMessageBufferCode.Overrun : (byte)RxMe… in FillReceivedFrame() 214 messageBufferCode = (byte)RxMessageBufferCode.Empty; in Finalize() 256 case RxMessageBufferCode.Empty: 257 return RxCode.Empty; 294 (RxMessageBufferCode)messageBufferCode == RxMessageBufferCode.Empty || 368 Empty = 0b0100, enumerator
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/ |
| D | NullRegistrationPointPeripheralContainer.cs | 85 Enumerable.Empty<NullRegistrationPoint>(); in GetRegistrationPoints() 94 Enumerable.Empty<IRegistered<TPeripheral, NullRegistrationPoint>>();
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/ |
| D | RiscvOpcodesParser.cs | 100 { BaseRiscV.InstructionSet.S, Array.Empty<string>() }, 101 { BaseRiscV.InstructionSet.U, Array.Empty<string>() }, 113 { BaseRiscV.InstructionSet.S, Array.Empty<string>() }, 114 { BaseRiscV.InstructionSet.U, Array.Empty<string>() },
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/ |
| D | CommandInteractionEater.cs | 91 return String.Empty; in ReadLine() 128 return String.Empty; in ReadLine()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/UART/ |
| D | IUARTWithBufferState.cs | 23 Empty, enumerator
|