Home
last modified time | relevance | path

Searched refs:context (Results 1 – 25 of 29) sorted by relevance

12

/Renode-v1.15.3-c57714d/tools/analyzers/
DRenodeCopyrightAnalyzer.cs24 public override void Initialize(AnalysisContext context) in Initialize() argument
26 context.ConfigureGeneratedCodeAnalysis(GeneratedCodeAnalysisFlags.None); in Initialize()
27 context.EnableConcurrentExecution(); in Initialize()
28 context.RegisterSyntaxTreeAction(CheckCopyrights); in Initialize()
31 private void CheckCopyrights(SyntaxTreeAnalysisContext context) in CheckCopyrights() argument
33 var comments = context in CheckCopyrights()
46context.ReportDiagnostic(Diagnostic.Create(CopyrightFormatRule, location: null)); in CheckCopyrights()
61context.ReportDiagnostic(Diagnostic.Create(CopyrightFormatRule, location: null)); in CheckCopyrights()
67 CheckAntmicroCopyrights(context, comment); in CheckCopyrights()
86context.ReportDiagnostic(Diagnostic.Create(CopyrightFormatRule, comment.GetLocation())); in CheckCopyrights()
[all …]
DRenodeClassMembersOrderAnalyzer.cs24 public override void Initialize(AnalysisContext context) in Initialize() argument
26 context.ConfigureGeneratedCodeAnalysis(GeneratedCodeAnalysisFlags.None); in Initialize()
27 context.EnableConcurrentExecution(); in Initialize()
28 context.RegisterSyntaxTreeAction(CheckClassMembersOrder); in Initialize()
31 private void CheckClassMembersOrder(SyntaxTreeAnalysisContext context) in CheckClassMembersOrder() argument
33 var classes = context in CheckClassMembersOrder()
58 context.ReportDiagnostic(diagnostic); in CheckClassMembersOrder()
/Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/Connection/
DLibraryConnection.cs150 return this.context;
158 this.context = (value == "") ? null : value;
180 if(this.context != null)
182 IntPtr pContext = Marshal.StringToHGlobalAnsi(this.context);
223 private string context; field in Antmicro.Renode.Plugins.CoSimulationPlugin.Connection.LibraryConnection
DSocketConnection.cs187 return this.context;
195 this.context = (value == "" || value == null) ? "{0} {1} {2}" : value;
224 return String.Format(this.context,
351 private string context = "{0} {1} {2}"; field in Antmicro.Renode.Plugins.CoSimulationPlugin.Connection.SocketConnection
/Renode-v1.15.3-c57714d/tests/unit-tests/
Darm-gic-redistributor.robot13 [Arguments] ${index} ${reg} ${val} ${context} ${size}=Double
16 Execute Command sysbus Write${size}Word ${addr} ${val} ${context}
19 [Arguments] ${index} ${reg} ${context} ${size}=Double
22 ${val}= Execute Command sysbus Read${size}Word ${addr} ${context}
Dsysbus.robot280 # and all writes will fail (lock is on "any" context)
295 # CPU0 is unaffected by the lock, as is the access without context
469 # LoadELF without cpu context argument loads symbols in the global scope
475 …address_local}= Execute Command sysbus GetSymbolAddress ${main_symbol_name} context=${cpu}
479 Execute Command sysbus ClearSymbols context=${cpu}
480 …address_local}= Execute Command sysbus GetSymbolAddress ${main_symbol_name} context=${cpu}
486 … Execute Command sysbus GetSymbolAddress ${main_symbol_name} context=${cpu}
491 Execute Command sysbus LoadSymbolsFrom ${bin} context=${cpu}
492 …address_local}= Execute Command sysbus GetSymbolAddress ${main_symbol_name} context=${cpu}
Dbus-isolation.robot90 Wait For Log Entry priv_aware: Read from context
93 Wait For Log Entry priv_aware: No context
Darray_memory.robot57 # cpu context passed to LoadELF command is important because of the CPU-specific overlay
/Renode-v1.15.3-c57714d/scripts/single-node/
Dzynqmp_openamp.resc33 …000 "earlycon console=ttyPS1,115200n8 root=/dev/ram0 rw initrd=0x20000000,64M" false context=apu0
38 sysbus LoadSymbolsFrom $uboot_elf context=apu0
39 sysbus LoadSymbolsFrom $linux_elf context=apu0
Dzynqmp_remoteproc.resc38 …000 "earlycon console=ttyPS1,115200n8 root=/dev/ram0 rw initrd=0x20000000,64M" false context=apu0
43 sysbus LoadSymbolsFrom $uboot_elf context=apu0
44 sysbus LoadSymbolsFrom $linux_elf context=apu0
Drzg2l_linux.resc28 …lycon console=ttySC0,115200n8 root=/dev/ram0 rw initrd=0x60000000,64M nr_cpus=1" false context=cpu0
32 sysbus LoadSymbolsFrom $uboot_elf context=cpu0
33 sysbus LoadSymbolsFrom $linux_elf context=cpu0
Dsegger-rtt.py35 found, addresses = bus.TryGetAllSymbolAddresses(symbol, context=cpu)
Dquark_c1000.resc10 # Create a new machine and set the Monitor's context accordingly.
/Renode-v1.15.3-c57714d/src/Renode/RobotFrameworkEngine/
DHttpServer.cs127 var context = listener.GetContext(); in Runner()
128 xmlRpcServer.ProcessRequest(context); in Runner()
/Renode-v1.15.3-c57714d/src/Renode/
DProgram.cs54 Antmicro.Renode.UI.CommandLineInterface.Run(options, (context) => in Main()
59 context.RegisterSurrogate(typeof(RobotFrameworkEngine), rf); in Main()
/Renode-v1.15.3-c57714d/scripts/single-node/bus-isolation/
DSampleStateAwareReader.cs26 return sysbus.ReadDoubleWord(address, context: this, cpuState: state); in Read()
DSampleStateAwareReaderWithTransactionState.cs27 return sysbus.ReadDoubleWord(address, context: this, cpuState: state); in Read()
/Renode-v1.15.3-c57714d/src/Plugins/SystemCPlugin/Peripheral/
DSystemCPeripheral.cs576 … sysbus.WriteByte(message.Address, (byte)message.Payload, context: icpu); in BackwardConnectionLoop()
579 … sysbus.WriteWord(message.Address, (ushort)message.Payload, context: icpu); in BackwardConnectionLoop()
582 … sysbus.WriteDoubleWord(message.Address, (uint)message.Payload, context: icpu); in BackwardConnectionLoop()
585 … sysbus.WriteQuadWord(message.Address, message.Payload, context: icpu); in BackwardConnectionLoop()
614 … payload = (ulong)sysbus.ReadByte(message.Address, context: icpu); in BackwardConnectionLoop()
617 … payload = (ulong)sysbus.ReadWord(message.Address, context: icpu); in BackwardConnectionLoop()
620 … payload = (ulong)sysbus.ReadDoubleWord(message.Address, context: icpu); in BackwardConnectionLoop()
623 … payload = (ulong)sysbus.ReadQuadWord(message.Address, context: icpu); in BackwardConnectionLoop()
/Renode-v1.15.3-c57714d/scripts/multi-node/quark-c1000-zephyr/
Ddemo.resc44 # The Monitor works in the context of the current machine. It allows the user to access the machine…
46 # so that the $bin and $name variables are global and accessible from the new context.
63 # This clears the Monitor's context. To select a machine, use the `mach set` command (try `help mac…
Dquark_c1000.resc12 # Create a new machine and set the Monitor's context accordingly.
/Renode-v1.15.3-c57714d/tools/sel4_extensions/
DREADME.md9 * Creating and removing breakpoint on context-switches between kernel and userspace,
51 (gdb) # Create temporary breakpoint on context-switch to kernel
DseL4Extensions.cs267 ulong tcbAddress = cpu.Bus.ReadDoubleWord(this.ksCurThreadPhysAddress, context: cpu); in HandleRestoreUserContext()
282 var pc = cpu.Bus.ReadDoubleWord(nextPCAddress, context: cpu); in HandleRestoreUserContext()
340 var underlying = cpu.Bus.ReadDoubleWord(paddr, context: cpu); in HandlePostLookupCapAndSlotAddress()
362 var c = cpu.Bus.ReadByte(paddr + i, context: cpu); in HandlePostLookupIPCBuffer()
531 var tcb = cpu.Bus.ReadDoubleWord(this.ksCurThreadPhysAddress, context: cpu); in CurrentThreadUnsafe()
/Renode-v1.15.3-c57714d/tools/tlib_helper/
DREADME.md3 `tlib_helper` is a collection of helper functions that give the user a better context of the whole …
/Renode-v1.15.3-c57714d/.github/ISSUE_TEMPLATE/
Dbug_report.md22 If it makes sense in the context of your issue, please create your own repository using this templa…
/Renode-v1.15.3-c57714d/tests/platforms/
DSTM32F7.robot75 Wait For Line On Uart modem_quectel_bg9x: Error activating modem with pdp context

12