| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/ |
| D | PseudorandomNumberGeneratorTests.cs | 29 … 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()
|
| D | TimeHandleTests.cs | 601 …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/ |
| D | ThreadSyncTester.cs | 44 … 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/ |
| D | PythonExecuteCommand.cs | 42 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()
|
| D | CreatePlatformCommand.cs | 41 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/ |
| D | PythonEngine.cs | 102 imports.Execute(Scope); in InnerInit() 170 protected void Execute(CompiledCode code) in Execute() method in Antmicro.Renode.Core.PythonEngine 172 … Execute(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/ |
| D | KillCommand.cs | 16 [Execute("k")] 17 public PacketData Execute() in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.KillCommand
|
| D | ReportHaltReasonCommand.cs | 15 [Execute("?")] 16 public PacketData Execute() in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.ReportHaltReasonCommand
|
| D | SingleStepCommand.cs | 17 [Execute("s")] 18 public PacketData Execute() in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.SingleStepCommand
|
| D | ThreadAliveCommand.cs | 17 [Execute("T")] 18 public PacketData Execute() in Execute() method in Antmicro.Renode.Extensions.Utilities.GDB.Commands.ThreadAliveCommand
|
| D | ThreadAttachedCommand.cs | 17 [Execute("qAttached")] 18 public PacketData Execute() in Execute() method in Antmicro.Renode.Extensions.Utilities.GDB.Commands.ThreadAttachedCommand
|
| D | DetachCommand.cs | 20 [Execute("D")] 21 public PacketData Execute() in Execute() method in Antmicro.Renode.Extensions.Utilities.GDB.Commands.DetachCommand
|
| D | ContinueCommand.cs | 17 [Execute("c")] 18 public PacketData Execute() in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.ContinueCommand
|
| D | CurrentThreadCommand.cs | 17 [Execute("qC")] 18 public PacketData Execute() in Execute() method in Antmicro.Renode.Extensions.Utilities.GDB.Commands.CurrentThreadCommand
|
| D | SupportedQueryCommand.cs | 17 [Execute("qSupported")] 18 public PacketData Execute() in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.SupportedQueryCommand
|
| D | Trace32Commands.cs | 23 [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
|
| D | ThreadContextCommand.cs | 17 [Execute("Hg")] 18 public PacketData Execute( in Execute() method in Antmicro.Renode.Extensions.Utilities.GDB.Commands.ThreadContextCommand
|
| D | ReadGeneralRegistersCommand.cs | 19 [Execute("g")] 20 public PacketData Execute() in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.ReadGeneralRegistersCommand
|
| D | ReadRegisterCommand.cs | 19 [Execute("p")] 20 public PacketData Execute( in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.ReadRegisterCommand
|
| D | CalculateCRCCommand.cs | 24 [Execute("qCRC:")] 25 public PacketData Execute( in Execute() method in Antmicro.Renode.Utilities.GDB.Commands.CalculateCRCCommand
|
| D | WriteRegisterCommand.cs | 21 [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/ |
| D | PythonPeripheral.cs | 141 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/ |
| D | RiscVCsrPythonEngine.cs | 47 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/ |
| D | BlockPythonEngine.cs | 32 Execute(code, error => in BlockPythonEngine() 42 Execute(code, error => in BlockPythonEngine()
|
| D | BusPeripheralsHooksPythonEngine.cs | 36 Execute(writeCode, error => in BusPeripheralsHooksPythonEngine() 50 Execute(readCode, error => in BusPeripheralsHooksPythonEngine()
|