Home
last modified time | relevance | path

Searched defs:action (Results 1 – 25 of 28) sorted by relevance

12

/Renode-Infrastructure-v1.15.3-29f510e/src/UI/XwtProvider/
DApplicationExtensions.cs34 public static void InvokeInUIThread(Action action) in InvokeInUIThread()
47 public static void InvokeInUIThreadNonBlocking(Action action) in InvokeInUIThreadNonBlocking()
81 public static void InvokeInUIThreadAndWait(Action action) in InvokeInUIThreadAndWait()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DResdCommand.cs45 …tion writer, [Values("load")] LiteralToken action, LiteralToken internalName, StringToken filePath) in Run()
66 …teraction writer, [Values("unload", "list-blocks")] LiteralToken action, LiteralToken internalName) in Run()
85 …] LiteralToken action, LiteralToken internalName, DecimalIntegerToken index, LiteralToken property) in Run()
120 …lToken internalName, DecimalIntegerToken index, StringToken startTimeString, DecimalIntegerToken c… in Run()
138 …ge")] LiteralToken action, LiteralToken internalName, DecimalIntegerToken index, StringToken range) in Run()
168 …LiteralToken internalName, DecimalIntegerToken index, StringToken startTimeString, StringToken end… in Run()
191 …alues("describe-block")] LiteralToken action, LiteralToken internalName, DecimalIntegerToken index) in Run()
DMachCommand.cs54 …id Run(ICommandInteraction writer, [Values("set")] LiteralToken action, DecimalIntegerToken number) in Run()
69 …dInteraction writer, [Values("set", "add", "rem", "create")] LiteralToken action, StringToken name) in Run()
111 public void Run(ICommandInteraction writer, [Values("create", "clear")] LiteralToken action) in Run()
DMonitorPathCommand.cs35 …SetOrAdd(ICommandInteraction writer, [Values( "set", "add")] LiteralToken action, StringToken path) in SetOrAdd()
50 public void Reset(ICommandInteraction writer, [Values( "reset")] LiteralToken action) in Reset()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DIfWrapper.cs33 public IfWrapper<T> Then(Action<T> action) in Then()
47 public T Else(Action<T> action) in Else()
DBitPatternDetector.cs60 …RegisterPatternHandler(Func<bool[], bool[], bool> patternDecoder, Action<bool[]> action = null, st… in RegisterPatternHandler()
75 public Action<bool[]> action; field
DBitHelper.cs416 public static void ForeachBit(ulong reg, Action<byte, bool> action, byte? bitCount = null) in ForeachBit()
426 public static void ForeachActiveBit(ulong reg, Action<byte> action) in ForeachActiveBit()
DMisc.cs320 public static void Times(this int times, Action<int> action) in Times()
328 public static void Times(this int times, Action action) in Times()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DBusHookHandler.cs16 public BusHookHandler(BusHookDelegate action, SysbusAccessWidth width) in BusHookHandler()
38 private readonly BusHookDelegate action; field in Antmicro.Renode.Peripherals.Bus.BusHookHandler
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/
DTimeSourceTests.cs827 … public void ExecuteOnDispatcherThread(Action<ITimeSink, TimeInterval> action, bool wait = true) in ExecuteOnDispatcherThread()
889 private Action<ITimeSink, TimeInterval> action; field in UnitTests.TimeSourceTests.MoreComplicatedTimeSink
961 private readonly Func<SimpleTimeSink, TimeHandle, TimeInterval, bool> action; field in UnitTests.TimeSourceTests.SimpleTimeSink
DSystemBusTests.cs396 private void CreateMachineAndExecute(Action<IBusController> action) in CreateMachineAndExecute()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Time/
DIClockSource.cs15 void ExecuteInLock(Action action); in ExecuteInLock()
DBaseClockSource.cs64 public virtual void ExecuteInLock(Action action) in ExecuteInLock()
DTimeSourceBase.cs946 public void RegisterPhase(Action<T> action) in RegisterPhase()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USB/
DUSBHost.cs140 private void ExecuteWithDelay(Action action) in ExecuteWithDelay()
DNRF_USBD.cs65 private void HandleSetupPacket(SetupPacket packet, byte[] arg2, Action<byte[]> action) in HandleSetupPacket()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DMachine.cs629 …public IManagedThread ObtainManagedThread(Action action, uint frequency, string name = "managed th… in ObtainManagedThread()
634 …public IManagedThread ObtainManagedThread(Action action, TimeInterval period, string name = "manag… in ObtainManagedThread()
641 …public ManagedThreadWrappingClockEntry(IMachine machine, Action action, uint frequency, string nam… in ManagedThreadWrappingClockEntry()
647 …public ManagedThreadWrappingClockEntry(IMachine machine, Action action, TimeInterval period, strin… in ManagedThreadWrappingClockEntry()
688 …private ManagedThreadWrappingClockEntry(IMachine machine, Action action, Func<bool> stopCondition … in ManagedThreadWrappingClockEntry()
704 private readonly Action action; field in Antmicro.Renode.Core.Machine.ManagedThreadWrappingClockEntry
1122 … public void ScheduleAction(TimeInterval delay, Action<TimeInterval> action, string name = null) in ScheduleAction()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/
DUDMA.cs166 private void ActionOnChannels(Action<Channel, bool> action, uint selector) in ActionOnChannels()
176 private void ActionOnChannels(Action<Channel> action, uint selector) in ActionOnChannels()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Timers/
DSTM32F4_RTC.cs656 private void UpdateAlarm(AlarmConfig alarm, Registers register, Action<AlarmConfig> action) in UpdateAlarm()
666 private void UpdateAlarmA(Action<AlarmConfig> action) in UpdateAlarmA()
671 private void UpdateAlarmB(Action<AlarmConfig> action) in UpdateAlarmB()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/
DIMachine.cs50 …IManagedThread ObtainManagedThread(Action action, uint frequency, string name = "managed thread", … in ObtainManagedThread()
51 …IManagedThread ObtainManagedThread(Action action, TimeInterval period, string name = "managed thre… in ObtainManagedThread()
63 void ScheduleAction(TimeInterval delay, Action<TimeInterval> action, string name = null); in ScheduleAction()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitorExecutorExtensions.cs94 public void Add(IMachine machine, string name, Action action) in Add()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_SystemResetControl.cs437 public void ExecOnElapsed(Action action, uint limitInCycles) in ExecOnElapsed()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Network/
DAtCommandModem.cs218 protected void ExecuteWithDelay(Action action, ulong milliseconds = 50) in ExecuteWithDelay()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DTranslationCPU.cs2473 public void AddCallback(Action<ICpuSupportingGdb, ulong> action) in AddCallback()
2478 public bool RemoveCallback(Action<ICpuSupportingGdb, ulong> action) in RemoveCallback()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/
DBaseRiscV.cs309 public void AddPostOpcodeExecutionHook(UInt64 mask, UInt64 value, Action<ulong> action) in AddPostOpcodeExecutionHook()

12