Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Mocks/
DHPSHostController.cs526 var table = new Table().AddRow("Value", "Bit", "Name", "Description"); in FormatSystemStatus()
527 table.AddRow(string.Empty, "15", string.Empty, string.Empty); in FormatSystemStatus()
528 table.AddRow(string.Empty, "14", string.Empty, string.Empty); in FormatSystemStatus()
529 …table.AddRow((data[0] & 0x20) >> 5 == 1 ? "1" : "0", "13", "ONE_TIME_INIT", "Whether the one_time_… in FormatSystemStatus()
530 …table.AddRow((data[0] & 0x10) >> 4 == 1 ? "1" : "0", "12", "STAGE0_PERM_LOCKED", "Whether stage0 h… in FormatSystemStatus()
531 …table.AddRow((data[0] & 0x8) >> 3 == 1 ? "1" : "0", "11", "STAGE0_LOCKED", "Whether stage0 has bee… in FormatSystemStatus()
532 …table.AddRow((data[0] & 0x4) >> 2 == 1 ? "1" : "0", "10", "CMDINPROGRESS", "A command is in-progre… in FormatSystemStatus()
533 …table.AddRow((data[0] & 0x2) >> 1 == 1 ? "1" : "0", "9", "APPLREADY", "Application is running, and… in FormatSystemStatus()
534 …table.AddRow((data[0] & 0x1) == 1 ? "1" : "0", "8", "APPLRUN", "Stage 1 has been launched, and is … in FormatSystemStatus()
535 table.AddRow(string.Empty, "7", string.Empty, string.Empty); in FormatSystemStatus()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/SynopsysDWCEthernetQualityOfService/
DSynopsysDWCEthernetQualityOfService_Registers.cs58 table.AddRow("Name", "Value"); in GetCoutersInfo()
59 table.AddRow(nameof(txByteCounter), Convert.ToString(txByteCounter.Value)); in GetCoutersInfo()
60 table.AddRow(nameof(txPacketCounter), Convert.ToString(txPacketCounter.Value)); in GetCoutersInfo()
61 … table.AddRow(nameof(txUnicastPacketCounter), Convert.ToString(txUnicastPacketCounter.Value)); in GetCoutersInfo()
62 … table.AddRow(nameof(txMulticastPacketCounter), Convert.ToString(txMulticastPacketCounter.Value)); in GetCoutersInfo()
63 … table.AddRow(nameof(txBroadcastPacketCounter), Convert.ToString(txBroadcastPacketCounter.Value)); in GetCoutersInfo()
64 table.AddRow(nameof(txGoodByteCounter), Convert.ToString(txGoodByteCounter.Value)); in GetCoutersInfo()
65 table.AddRow(nameof(txGoodPacketCounter), Convert.ToString(txGoodPacketCounter.Value)); in GetCoutersInfo()
66 table.AddRow(nameof(rxPacketCounter), Convert.ToString(rxPacketCounter.Value)); in GetCoutersInfo()
67 table.AddRow(nameof(rxByteCounter), Convert.ToString(rxByteCounter.Value)); in GetCoutersInfo()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DTable.cs26 public Table AddRow(params string[] elements) in AddRow() method in Antmicro.Renode.Utilities.Table
DSnapshotTracker.cs78 var table = new Table().AddRow("Path", "Timestamp", "Size"); in PrintDetailedSnapshotsInfo()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DTranslationCPU_OpcodesCounting.cs71 .AddRow("Opcode", "Count") in GetAllOpcodesCounters()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/CPU/
DICPUWithRegisters.cs85 var table = new Table().AddRow(" Name ", " Index ", " Value "); in GetRegistersValues()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Sockets/
DSocketsManager.cs42 var table = new Table().AddRow("Owner", "Type", "EndPoint", "Bound", "Connected"); in List()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm64/
DARMv8A.cs46 var table = new Renode.Utilities.Table().AddRow("Name", "Value"); in GetAllSystemRegisterValues()
51 table.AddRow(indexSystemRegisterPair.Value.Name, $"0x{value:X}"); in GetAllSystemRegisterValues()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/GPIOPort/
DNXPGPIOPort.cs97 … result.AddRow("Pin", "Direction", "State", "Input enabled", "Trigger mode", "Active interrupt"); in PrintCurrentConfiguration()
101 result.AddRow( in PrintCurrentConfiguration()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Plugins/
DPluginManager.cs53 … var table = new Table().AddRow("Name", "Description", "Vendor", "Version", "Mode", "State"); in GetPlugins()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DMachine.cs716 …var table = new Table().AddRow("Owner", "Enabled", "Frequency", "Limit", "Value", "Step", "Event f… in GetClockSourceInfo()