Home
last modified time | relevance | path

Searched refs:ExchangeClockEntryWith (Results 1 – 8 of 8) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Timers/
DLimitTimer.cs94 …clockSource.ExchangeClockEntryWith(OnLimitReached, oldEntry => oldEntry.With(frequency: effectiveF…
113 … clockSource.ExchangeClockEntryWith(OnLimitReached, oldEntry => oldEntry.With(value: value));
127 … clockSource.ExchangeClockEntryWith(OnLimitReached, oldEntry => oldEntry.With(workMode: value));
149 …clockSource.ExchangeClockEntryWith(OnLimitReached, oldEntry => oldEntry.With(frequency: effectiveF…
163 clockSource.ExchangeClockEntryWith(OnLimitReached, oldEntry =>
190 … clockSource.ExchangeClockEntryWith(OnLimitReached, oldEntry => oldEntry.With(enabled: value),
248 clockSource.ExchangeClockEntryWith(OnLimitReached, oldEntry => in ResetValue()
268 … clockSource.ExchangeClockEntryWith(OnLimitReached, oldEntry => oldEntry.With(direction: value),
319 clockSource.ExchangeClockEntryWith(OnLimitReached, x => clockEntry, () => clockEntry); in InternalReset()
DComparingTimer.cs67 …clockSource.ExchangeClockEntryWith(CompareReachedInternal, oldEntry => oldEntry.With(enabled: valu…
112 clockSource.ExchangeClockEntryWith(CompareReachedInternal, entry =>
134 clockSource.ExchangeClockEntryWith(CompareReachedInternal, entry =>
181 … clockSource.ExchangeClockEntryWith(CompareReachedInternal, oldEntry => oldEntry.With(step: step));
207 …clockSource.ExchangeClockEntryWith(CompareReachedInternal, oldEntry => oldEntry.With(frequency: ef… in RecalculateFrequency()
225 …clockSource.ExchangeClockEntryWith(CompareReachedInternal, entry => entry.With(period: compareValu… in CompareReachedInternal()
230 …clockSource.ExchangeClockEntryWith(CompareReachedInternal, entry => entry.With(period: initialLimi… in CompareReachedInternal()
246 … clockSource.ExchangeClockEntryWith(CompareReachedInternal, entry => clockEntry, () => clockEntry); in InternalReset()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Timers/
DTegraTimer.cs64 …clockSource.ExchangeClockEntryWith(OnLimitReached, oldEntry => oldEntry.With(period: (value & ((1 … in WriteDoubleWord()
98 clockSource.ExchangeClockEntryWith(OnLimitReached, x => clockEntry, () => clockEntry); in Reset()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Time/
DIClockSource.cs17 void ExchangeClockEntryWith(Action handler, Func<ClockEntry, ClockEntry> visitor, in ExchangeClockEntryWith() method
DBaseClockSource.cs90 … public virtual void ExchangeClockEntryWith(Action handler, Func<ClockEntry, ClockEntry> visitor, in ExchangeClockEntryWith() method in Antmicro.Renode.Time.BaseClockSource
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/PowerPC/
DPowerPc64.cs145 machine.ClockSource.ExchangeClockEntryWith(DecrementerHandler, in WriteDecrementer()
DPowerPc.cs153 machine.ClockSource.ExchangeClockEntryWith(DecrementerHandler, in WriteDecrementer()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DMachine.cs660 machine.ClockSource.ExchangeClockEntryWith( in Start()
679 machine.ClockSource.ExchangeClockEntryWith(action, x => x.With(enabled: false)); in Stop()
685 … set => machine.ClockSource.ExchangeClockEntryWith(action, entry => entry.With(frequency: value));