Home
last modified time | relevance | path

Searched refs:Empty (Results 1 – 25 of 104) sorted by relevance

12345

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Mocks/
DHPSHostController.cs527 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/
DCoreTimerTest.cs26 …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()
DTimeTests.cs24 …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()
DTimeHandleTests.cs70 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 …]
DComparingTimerTests.cs22 … 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/
DInterface.cs43 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/
DTimeHandle.cs281 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 …]
DBaseClockSource.cs83 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/
DUSBString.cs18 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
DUSBDeviceCore.cs102 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/
DPacketData.cs21 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/
DUSBSerialPort_S3B.cs32 …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/
DSymbolLookup.cs479 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/
DConsoleBackend.cs40 ? string.Empty
43 return string.Empty;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/MSC/
DInterface.cs31 return BitStream.Empty; in HandleRequest()
44 return BitStream.Empty; in HandleClassRequest()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DPropertyTagParser.cs31 string key = string.Empty; in GetNextTag()
32 string value = string.Empty; in GetNextTag()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Hooks/
DUartHooksExtensions.cs30 var currentLine = string.Empty; in AddLineHook()
39 currentLine = string.Empty; in AddLineHook()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/CDC/
DInterface.cs41 return BitStream.Empty; in HandleRequest()
48 return BitStream.Empty; in HandleClassRequest()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MemoryControllers/
DGaisler_FaultTolerantMemoryController.cs41 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/
DPeripheralsCommand.cs113 …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/
DS32K3XX_FlexCAN_Structures.cs92 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/
DNullRegistrationPointPeripheralContainer.cs85 Enumerable.Empty<NullRegistrationPoint>(); in GetRegistrationPoints()
94 Enumerable.Empty<IRegistered<TPeripheral, NullRegistrationPoint>>();
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/
DRiscvOpcodesParser.cs100 { 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/
DCommandInteractionEater.cs91 return String.Empty; in ReadLine()
128 return String.Empty; in ReadLine()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/UART/
DIUARTWithBufferState.cs23 Empty, enumerator

12345