| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/ |
| D | QueryCommand.cs | 43 …xmlFile.Append("<?xml version=\"1.0\"?>\n<!DOCTYPE feature SYSTEM \"gdb-target.dtd\">\n<target ver… in SendQueryXml() 44 xmlFile.Append($"<architecture>{manager.Cpu.GDBArchitecture}</architecture>\n"); in SendQueryXml() 49 xmlFile.Append("</target>\n"); in SendQueryXml() 53 xmlFile.Append("<?xml version=\"1.0\"?>\n<threads>\n"); in SendQueryXml() 56 …xmlFile.Append($"<thread id=\"{gdbCpuId:x}\" core=\"{gdbCpuId - 1}\" name=\"{manager.ManagedCpus[g… in SendQueryXml() 58 xmlFile.Append("</threads>\n"); in SendQueryXml() 68 xmlFile.Append($"<feature name=\"{feature.Name}\">\n"); in AppendFeature() 80 xmlFile.Append($"</{type.Type}>\n"); in AppendFeature() 89 …xmlFile.Append($"<reg name=\"{register.Name}\" bitsize=\"{register.Size}\" regnum=\"{register.Numb… in AppendFeature() 92 xmlFile.Append($"type=\"{register.Type}\" "); in AppendFeature() [all …]
|
| D | SupportedQueryCommand.cs | 22 …command.Append(string.Format("PacketSize={0};qXfer:features:read+;swbreak+;hwbreak+;t32extensions+… in Execute() 25 command.Append(";qXfer:threads:read+;vContSupported+"); in Execute()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/HID/ |
| D | Descriptor.cs | 33 .Append(HID_ClassSpecification) in FillDescriptor() 34 .Append(CountryCode) in FillDescriptor() 35 .Append(NumberOfClassDescriptors) in FillDescriptor() 36 .Append(DescriptorType) in FillDescriptor() 37 .Append(HidDescriptorLength); in FillDescriptor()
|
| D | ReportDescriptor.cs | 36 buffer.Append(b); in GetDescriptor() 67 buffer.Append((byte)((Tag << 4) | ((byte)Type << 2) | (byte)Size)); in FillDescriptor() 70 buffer.Append(Data[i]); in FillDescriptor()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/ |
| D | USBInterface.cs | 69 .Append(Identifier) in FillDescriptor() 70 .Append(0) // TODO: implement alternate setting in FillDescriptor() 71 .Append((byte)Endpoints.Count) in FillDescriptor() 72 .Append((byte)Class) in FillDescriptor() 73 .Append(SubClass) in FillDescriptor() 74 .Append(Protocol) in FillDescriptor() 75 .Append(USBString.FromString(Description).Index); in FillDescriptor()
|
| D | USBDeviceCore.cs | 260 .Append((short)CompatibleProtocolVersion) in FillDescriptor() 261 .Append((byte)Class) in FillDescriptor() 262 .Append(SubClass) in FillDescriptor() 263 .Append(Protocol) in FillDescriptor() 264 .Append((byte)MaximalPacketSize) in FillDescriptor() 265 .Append(VendorId) in FillDescriptor() 266 .Append(ProductId) in FillDescriptor() 267 .Append(DeviceReleaseNumber) in FillDescriptor() 268 .Append(USBString.FromString(ManufacturerName).Index) in FillDescriptor() 269 .Append(USBString.FromString(ProductName).Index) in FillDescriptor() [all …]
|
| D | USBConfiguration.cs | 97 .Append((short)RecursiveDescriptorLength) in FillDescriptor() 98 .Append((byte)Interfaces.Count) in FillDescriptor() 99 .Append(Identifier) in FillDescriptor() 100 .Append(USBString.FromString(Description).Index) in FillDescriptor() 101 .Append((byte)(((SelfPowered ? 1 : 0) << 6) | ((RemoteWakeup ? 1 : 0) << 5))) in FillDescriptor() 102 .Append((byte)((MaximalPower + 1) / 2)); in FillDescriptor()
|
| D | USBString.cs | 52 .Append(4) in GetSupportedLanguagesDescriptor() 53 .Append((byte)DescriptorType.String) in GetSupportedLanguagesDescriptor() 54 .Append((short)LanguageCode.EnglishUnitedStates); in GetSupportedLanguagesDescriptor() 77 buffer.Append(b); in FillDescriptor()
|
| D | DescriptorProvider.cs | 34 .Append((byte)DescriptorLength) in GetDescriptor() 35 .Append((byte)type); in GetDescriptor()
|
| D | USBEndpoint.cs | 170 .Append((byte)(((int)Direction << 7) | Identifier)) in FillDescriptor() 172 .Append((byte)TransferType) in FillDescriptor() 173 .Append(MaximumPacketSize) in FillDescriptor() 174 .Append(Interval); in FillDescriptor()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | SafeStringBuilder.cs | 53 public void Append(string str) in Append() method in Antmicro.Renode.Utilities.SafeStringBuilder 57 buffer.Append(str); in Append() 61 public void Append(char str) in Append() method in Antmicro.Renode.Utilities.SafeStringBuilder 65 buffer.Append(str); in Append()
|
| D | BitStream.cs | 27 public BitStream Append(byte[] bytes) in Append() method in Antmicro.Renode.Utilities.BitStream 31 Append(b); in Append() 37 public BitStream Append(byte b) in Append() method in Antmicro.Renode.Utilities.BitStream 45 public BitStream Append(short s) in Append() method in Antmicro.Renode.Utilities.BitStream 54 public BitStream Append(ushort s) in Append() method in Antmicro.Renode.Utilities.BitStream 56 return Append((short)s); in Append()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Config/ |
| D | SimpleJson.cs | 681 sb.Append('\\'); in EscapeToJavascriptString() 687 sb.Append("\""); in EscapeToJavascriptString() 693 sb.Append('\t'); in EscapeToJavascriptString() 699 sb.Append('\b'); in EscapeToJavascriptString() 705 sb.Append('\n'); in EscapeToJavascriptString() 711 sb.Append('\r'); in EscapeToJavascriptString() 718 sb.Append(c); in EscapeToJavascriptString() 903 s.Append('"'); in ParseString() 908 s.Append('\\'); in ParseString() 913 s.Append('/'); in ParseString() [all …]
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/Backends/ |
| D | TextBackend.cs | 37 messageBuilder.Append(messages.Current); in FormatLogEntry() 41 messageBuilder.Append(Environment.NewLine); in FormatLogEntry() 42 messageBuilder.Append(" "); in FormatLogEntry() 43 messageBuilder.Append(messages.Current); in FormatLogEntry()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/CDC/ |
| D | FunctionalDescriptor.cs | 29 buffer.Append((byte)DescriptorLength); in GetDescriptor() 30 buffer.Append((byte)type); in GetDescriptor() 31 buffer.Append((byte)subtype); in GetDescriptor() 32 buffer.Append(specificData); in GetDescriptor()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/ |
| D | SevenSegmentsDisplay.cs | 97 result.Append("("); in AsPrettyString() 100 result.Append(isEnabled in AsPrettyString() 104 result.Append(")"); in AsPrettyString() 115 result.Append("["); in AsSegmentsString() 118 result.Append(digit.Value.ToString()); in AsSegmentsString() 120 result.Append("]"); in AsSegmentsString()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Analyzers/ |
| D | LoggingUartAnalyzer.cs | 77 logLineBuilder.Append("["); in WriteChar() 104 logLineBuilder.Append("|"); in WriteChar() 126 logLineBuilder.Append("output"); in WriteChar() 145 line.Append(nextCharacter); in WriteChar()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/ |
| D | CommandInteractionEater.cs | 52 data.Append(c); in Write() 58 error.Append(msg); in WriteError() 81 data.Append(c); in Write()
|
| D | MonitorPath.cs | 89 public void Append(string path) in Append() method in Antmicro.Renode.UserInterface.MonitorPath 98 Append(CurrentWorkingDirectory); in Reset()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/ |
| D | PropertyTagParser.cs | 50 bldr.Append(buffer[current].Trim()).Append("\n\r"); in GetNextTag()
|
| D | EmulationManager.cs | 157 pathText.Append(o.GetType().Name); in Save() 158 pathText.Append(" => "); in Save() 161 pathText.Append("\n"); in Save()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SD/ |
| D | SDCard.cs | 542 .Append((byte)0); // TODO: fill with the actual data in GenerateR2Response() 548 .Append(OperatingConditions.AsByteArray()); in GenerateR3Response() 554 .Append(OperatingVoltage.AsByteArray().Reverse().ToArray()) in GenerateR7Response() 555 .Append(checkPattern); in GenerateR7Response() 563 .Append(BlockBeginIndicator) in GenerateRegisterResponse() 564 .Append(reg) in GenerateRegisterResponse() 565 .Append(crc.HiByte()) in GenerateRegisterResponse() 566 .Append(crc.LoByte()); in GenerateRegisterResponse()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/MSC/ |
| D | Interface.cs | 41 return new BitStream().Append((byte)0); in HandleClassRequest()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/GDB/ |
| D | PacketThreadId.cs | 52 .Append($"thread-id: {IdToString(ThreadId)}").ToString(); in ToString()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/ |
| D | MonitorPathCommand.cs | 43 monitorPath.Append(path.Value); in SetOrAdd()
|