Home
last modified time | relevance | path

Searched refs:Execute (Results 1 – 25 of 58) sorted by relevance

123

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/
DPseudorandomNumberGeneratorTests.cs29 … result1.Add((int)tester.Execute(thread1, () => generator.Next()).ShouldFinish().Result); in ShouldGenerateNumbersDeterministically()
34 … result2.Add((int)tester.Execute(thread2, () => generator.Next()).ShouldFinish().Result); in ShouldGenerateNumbersDeterministically()
51 … result1.Add((int)tester.Execute(thread1, () => generator.Next()).ShouldFinish().Result); in ShouldGenerateNumbersDeterministicallyMultithreaded()
52 … result2.Add((int)tester.Execute(thread2, () => generator.Next()).ShouldFinish().Result); in ShouldGenerateNumbersDeterministicallyMultithreaded()
65 … test1Result = (int)tester.Execute(thread1, () => generator.Next()).ShouldFinish().Result; in ShouldHandleSerialization()
66 … test2Result = (int)tester.Execute(thread1, () => generatorCopy.Next()).ShouldFinish().Result; in ShouldHandleSerialization()
80 … thread1Results.Add((int)tester.Execute(thread1, () => generator.Next()).ShouldFinish().Result); in SetUp()
85 … thread2Results.Add((int)tester.Execute(thread2, () => generator.Next()).ShouldFinish().Result); in SetUp()
DTimeHandleTests.cs601 …return tester.Execute(sourceThread, () => { handle.GrantTimeInterval(interval); return null; }, "G… in GrantOnSource()
607 …return tester.Execute(sourceThread, () => { var r = handle.UnblockHandle(); return r; }, "Unblock"… in UnblockOnSource()
613 …waitResult = tester.Execute(sourceThread, () => { var r = handle.WaitUntilDone(out var ti); return… in WaitOnSource()
620 …requestResult = tester.Execute(sinkThread, () => { var r = handle.RequestTimeInterval(out var i); … in RequestOnSink()
626 …return tester.Execute(sinkThread, () => { handle.ReportProgress(p); return null;}, "ReportProgress… in ReportProgressOnSink()
632 …return tester.Execute(externalThread, () => { handle.Dispose(); return null; }, "Dispose").ShouldF… in DisposeOnExternal()
638 …return tester.Execute(externalThread, () => { handle.SourceSideActive = value; return null; }, "So… in SetSourceSideActiveOnExternal()
644 …return tester.Execute(externalThread, (Func<object>)(() => { handle.Enabled = value; return null; … in SetEnabledOnExternal()
650 …return tester.Execute(sinkThread, () => { handle.ReportBackAndBreak(i ?? TimeInterval.Empty); retu…
656 …return tester.Execute(sinkThread, () => { handle.ReportBackAndContinue(i ?? TimeInterval.Empty); r…
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/Utilities/
DThreadSyncTester.cs44 … public ExecutionResult Execute(TestThread t, Func<object> fun, string name = "unnamed operation") in Execute() method in Antmicro.Renode.UnitTests.Utilities.ThreadSyncTester
99 public bool Execute(Action a) in Execute() method in Antmicro.Renode.UnitTests.Utilities.ThreadSyncTester.TestThread
121 Execute(null); in Finish()
129 if(Execute(() => mre.Set())) in Wait()
180 t.Execute(() => { in ExecuteOn()
208 tester.Execute(tester.LocalThread, () => { in ShouldFinish()
227 tester.Execute(tester.LocalThread, () => { in ShouldBlock()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DPythonExecuteCommand.cs42 Execute(command.Value, writer); in Run()
46 private readonly Action<string, ICommandInteraction> Execute; field in Antmicro.Renode.UserInterface.Commands.PythonExecuteCommand
52 Execute = execute; in PythonExecuteCommand()
DCreatePlatformCommand.cs41 Execute(writer, type.Value, null); in Run()
47 Execute(writer, type.Value, name.Value); in Run()
50 private void Execute(ICommandInteraction writer, string type, string name) in Execute() method in Antmicro.Renode.UserInterface.Commands.CreatePlatformCommand
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DPythonEngine.cs102 imports.Execute(Scope); in InnerInit()
170 protected void Execute(CompiledCode code) in Execute() method in Antmicro.Renode.Core.PythonEngine
172Execute(code, error => throw new RecoverableException($"Python runtime error: {error}")); in Execute()
175 protected void Execute(CompiledCode code, Action<string> errorCallback) in Execute() method in Antmicro.Renode.Core.PythonEngine
180 code?.Execute(Scope); in Execute()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/
DKillCommand.cs16 [Execute("k")]
17 public PacketData Execute() in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.KillCommand
DReportHaltReasonCommand.cs15 [Execute("?")]
16 public PacketData Execute() in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.ReportHaltReasonCommand
DSingleStepCommand.cs17 [Execute("s")]
18 public PacketData Execute() in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.SingleStepCommand
DThreadAliveCommand.cs17 [Execute("T")]
18 public PacketData Execute() in Execute() method in Antmicro.Renode.Extensions.Utilities.GDB.Commands.ThreadAliveCommand
DThreadAttachedCommand.cs17 [Execute("qAttached")]
18 public PacketData Execute() in Execute() method in Antmicro.Renode.Extensions.Utilities.GDB.Commands.ThreadAttachedCommand
DDetachCommand.cs20 [Execute("D")]
21 public PacketData Execute() in Execute() method in Antmicro.Renode.Extensions.Utilities.GDB.Commands.DetachCommand
DContinueCommand.cs17 [Execute("c")]
18 public PacketData Execute() in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.ContinueCommand
DCurrentThreadCommand.cs17 [Execute("qC")]
18 public PacketData Execute() in Execute() method in Antmicro.Renode.Extensions.Utilities.GDB.Commands.CurrentThreadCommand
DSupportedQueryCommand.cs17 [Execute("qSupported")]
18 public PacketData Execute() in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.SupportedQueryCommand
DTrace32Commands.cs23 [Execute("mspr:")] // get AArch64 system register
24 public PacketData Execute( in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.Trace32Commands
56 [Execute("Mspr:")] // set AArch64 system register
57 public PacketData Execute( in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.Trace32Commands
DThreadContextCommand.cs17 [Execute("Hg")]
18 public PacketData Execute( in Execute() method in Antmicro.Renode.Extensions.Utilities.GDB.Commands.ThreadContextCommand
DReadGeneralRegistersCommand.cs19 [Execute("g")]
20 public PacketData Execute() in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.ReadGeneralRegistersCommand
DReadRegisterCommand.cs19 [Execute("p")]
20 public PacketData Execute( in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.ReadRegisterCommand
DCalculateCRCCommand.cs24 [Execute("qCRC:")]
25 public PacketData Execute( in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.CalculateCRCCommand
DWriteRegisterCommand.cs21 [Execute("P")]
22 public PacketData Execute( in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.WriteRegisterCommand
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Python/
DPythonPeripheral.cs141 Execute(); in ControlRead()
178 Execute(); in Init()
190 Execute(); in HandleRead()
201 Execute(); in HandleWrite()
204 private void Execute() in Execute() method in Antmicro.Renode.Peripherals.Python.PythonPeripheral
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/
DRiscVCsrPythonEngine.cs47 Execute(code, error => in RiscVCsrPythonEngine()
59 Execute(code, error => in RiscVCsrPythonEngine()
105 Execute(code); in TryInit()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Hooks/
DBlockPythonEngine.cs32 Execute(code, error => in BlockPythonEngine()
42 Execute(code, error => in BlockPythonEngine()
DBusPeripheralsHooksPythonEngine.cs36 Execute(writeCode, error => in BusPeripheralsHooksPythonEngine()
50 Execute(readCode, error => in BusPeripheralsHooksPythonEngine()

123