Home
last modified time | relevance | path

Searched refs:GetClockEntry (Results 1 – 9 of 9) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/
DTimeTests.cs69 …urce.AddClockEntry(new ClockEntry(10, 1, () => values.Add(clockSource.GetClockEntry(firstHandler).… in ShouldHaveHandlersInSync()
92 entryA = clockSource.GetClockEntry(handlerA); in ShouldObserveShorterPeriodClockAfterAdd()
93 entryB = clockSource.GetClockEntry(handlerB); in ShouldObserveShorterPeriodClockAfterAdd()
100 entryA = clockSource.GetClockEntry(handlerA); in ShouldObserveShorterPeriodClockAfterAdd()
101 entryB = clockSource.GetClockEntry(handlerB); in ShouldObserveShorterPeriodClockAfterAdd()
110 entryA = clockSource.GetClockEntry(handlerA); in ShouldObserveShorterPeriodClockAfterAdd()
111 entryB = clockSource.GetClockEntry(handlerB); in ShouldObserveShorterPeriodClockAfterAdd()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Timers/
DLimitTimer.cs57 var clockEntry = clockSource.GetClockEntry(OnLimitReached); in GetValueAndLimit()
104 return clockSource.GetClockEntry(OnLimitReached).Value;
123 return clockSource.GetClockEntry(OnLimitReached).WorkMode;
159 return clockSource.GetClockEntry(OnLimitReached).Period;
186 return clockSource.GetClockEntry(OnLimitReached).Enabled;
264 return clockSource.GetClockEntry(OnLimitReached).Direction;
DComparingTimer.cs63 return clockSource.GetClockEntry(CompareReachedInternal).Enabled;
219 valueAccumulatedSoFar += clockSource.GetClockEntry(CompareReachedInternal).Period; in CompareReachedInternal()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Timers/
DTegraTimer.cs32 var clockEntry = clockSource.GetClockEntry(OnLimitReached); in ReadDoubleWord()
91 …this.Log(LogLevel.Noisy, "Alarm on tmr, value 0x{0:X}", clockSource.GetClockEntry(OnLimitReached).… in OnLimitReached()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Time/
DIClockSource.cs20 ClockEntry GetClockEntry(Action handler); in GetClockEntry() method
DBaseClockSource.cs121 public virtual ClockEntry GetClockEntry(Action handler) in GetClockEntry() method in Antmicro.Renode.Time.BaseClockSource
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/PowerPC/
DPowerPc64.cs133 return checked((ulong)machine.ClockSource.GetClockEntry(DecrementerHandler).Value); in ReadDecrementer()
DPowerPc.cs139 return checked((uint)machine.ClockSource.GetClockEntry(DecrementerHandler).Value); in ReadDecrementer()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DMachine.cs673 var name = machine.ClockSource.GetClockEntry(action).LocalName; in StartDelayed()
684 get => (uint)machine.ClockSource.GetClockEntry(action).Frequency;