Home
last modified time | relevance | path

Searched refs:content (Results 1 – 11 of 11) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DTable.cs18 content = new List<string[]>(); in Table()
21 private Table(List<string[]> content) in Table() argument
23 this.content = content; in Table()
28 content.Add(elements); in AddRow()
36 content.Add(selectors.Select(x => x(element)).ToArray()); in AddRows()
43 var width = content.Max(x => x.Length); in ToArray()
44 var height = content.Count; in ToArray()
50 result[i, j] = content[i].Length > j ? content[i][j] : string.Empty; in ToArray()
56 private readonly List<string[]> content; field in Antmicro.Renode.Utilities.Table
DSafeStringBuilder.cs19 public bool TryDump(out string content) in TryDump() argument
25 content = null; in TryDump()
29 content = buffer.ToString(); in TryDump()
47 var content = buffer.ToString(0, toUnload); in Unload()
49 return content; in Unload()
DMisc.cs767 … var content = File.ReadAllLines(Path.Combine(currentDirectory.FullName, indicatorFiles[0])); in TryGetRootDirectory()
768 if(content.Length == 1 && content[0] == "5344ec2a-1539-4017-9ae5-a27c279bd454") in TryGetRootDirectory()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/
DReadRegisterCommand.cs23 var content = new StringBuilder(); in Execute()
30 content.AppendFormat("{0:x2}", b); in Execute()
44 content.AppendFormat("00"); in Execute()
49 ExpandRegisterValue(ref content, 0, content.Length, registerNumber); in Execute()
50 if(content.Length > 0) in Execute()
52 return new PacketData(content.ToString()); in Execute()
DReadMemoryCommand.cs25 var content = new StringBuilder(); in Execute()
74 content.AppendFormat("{0:x2}", b); in Execute()
78 return new PacketData(content.ToString()); in Execute()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Wireless/
DInterferenceQueue.cs34 …ublic static void Add(IRadio sender, RadioPhyId phyId, int channel, int txPowerDbm, byte[] content) in Add() argument
50 PacketInfo newEntry = new PacketInfo(sender, phyId, channel, txPowerDbm, content); in Add()
53 …og(LogLevel.Noisy, "InterferenceQueue.Add at {0}: [{1}]", addTime, BitConverter.ToString(content)); in Add()
194 … public PacketInfo(IRadio sender, RadioPhyId phyId, int channel, int txPowerDbm, byte[] content) in PacketInfo() argument
203 packetContent = new byte[content.Length]; in PacketInfo()
204 Array.Copy(content, packetContent, content.Length); in PacketInfo()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Testing/
DTerminalTester.cs488 var content = currentLineBuffer.ToString(); in CheckUnfinishedLine()
491 this.Log(LogLevel.Noisy, "Current line buffer content: >>{0}<<", content); in CheckUnfinishedLine()
502 var match = Regex.Match(content, pattern, options); in CheckUnfinishedLine()
514 matchStart = content.IndexOf(pattern, comparisonType); in CheckUnfinishedLine()
644 string content = null; in HandleSuccess()
650 content = currentLineBuffer.Unload(matchEnd).Substring(matchStart); in HandleSuccess()
655 content = item.Content; in HandleSuccess()
660 if(content != null && !binaryMode) in HandleSuccess()
662 content = content.StripNonSafeCharacters(); in HandleSuccess()
665 return new TerminalTesterResult(content, timestamp, matchGroups); in HandleSuccess()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Common/
DRegisterEnumParser.tt26 …// This file simply reads content of `RegisterEnumParserContent.tt` and, with simple transformatio…
31 var content = new List<string>();
61 content.Add(line);
76 foreach(var line in content)
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/I2C/
DRenesasRA_IIC.cs481 var content = writeQueue.ToArray(); in HandleStopCondition()
484 this.DebugLog("Writing {0} to peripheral", content.ToLazyHexString()); in HandleStopCondition()
485 selectedPeripheral.Write(content); in HandleStopCondition()
DRenesasRZG_IIC.cs478 var content = writeQueue.ToArray(); in HandleStopCondition()
481 this.DebugLog("Writing {0} to peripheral", content.ToLazyHexString()); in HandleStopCondition()
482 selectedPeripheral.Write(content); in HandleStopCondition()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/
DSVDParserTests.cs1026 private void SetUpDeviceWithString(string content) in SetUpDeviceWithString() argument
1029 File.WriteAllText(fileName, content); in SetUpDeviceWithString()