| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Mocks/ |
| D | HPSHostController.cs | 526 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/ |
| D | SynopsysDWCEthernetQualityOfService_Registers.cs | 58 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/ |
| D | Table.cs | 26 public Table AddRow(params string[] elements) in AddRow() method in Antmicro.Renode.Utilities.Table
|
| D | SnapshotTracker.cs | 78 var table = new Table().AddRow("Path", "Timestamp", "Size"); in PrintDetailedSnapshotsInfo()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ |
| D | TranslationCPU_OpcodesCounting.cs | 71 .AddRow("Opcode", "Count") in GetAllOpcodesCounters()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/CPU/ |
| D | ICPUWithRegisters.cs | 85 var table = new Table().AddRow(" Name ", " Index ", " Value "); in GetRegistersValues()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Sockets/ |
| D | SocketsManager.cs | 42 var table = new Table().AddRow("Owner", "Type", "EndPoint", "Bound", "Connected"); in List()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm64/ |
| D | ARMv8A.cs | 46 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/ |
| D | NXPGPIOPort.cs | 97 … 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/ |
| D | PluginManager.cs | 53 … var table = new Table().AddRow("Name", "Description", "Vendor", "Version", "Mode", "State"); in GetPlugins()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/ |
| D | Machine.cs | 716 …var table = new Table().AddRow("Owner", "Enabled", "Frequency", "Limit", "Value", "Step", "Event f… in GetClockSourceInfo()
|