Home
last modified time | relevance | path

Searched refs:Append (Results 1 – 25 of 47) sorted by relevance

12

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/
DQueryCommand.cs43 …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 …]
DSupportedQueryCommand.cs22 …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/
DDescriptor.cs33 .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()
DReportDescriptor.cs36 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/
DUSBInterface.cs69 .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()
DUSBDeviceCore.cs260 .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 …]
DUSBConfiguration.cs97 .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()
DUSBString.cs52 .Append(4) in GetSupportedLanguagesDescriptor()
53 .Append((byte)DescriptorType.String) in GetSupportedLanguagesDescriptor()
54 .Append((short)LanguageCode.EnglishUnitedStates); in GetSupportedLanguagesDescriptor()
77 buffer.Append(b); in FillDescriptor()
DDescriptorProvider.cs34 .Append((byte)DescriptorLength) in GetDescriptor()
35 .Append((byte)type); in GetDescriptor()
DUSBEndpoint.cs170 .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/
DSafeStringBuilder.cs53 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()
DBitStream.cs27 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/
DSimpleJson.cs681 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/
DTextBackend.cs37 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/
DFunctionalDescriptor.cs29 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/
DSevenSegmentsDisplay.cs97 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/
DLoggingUartAnalyzer.cs77 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/
DCommandInteractionEater.cs52 data.Append(c); in Write()
58 error.Append(msg); in WriteError()
81 data.Append(c); in Write()
DMonitorPath.cs89 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/
DPropertyTagParser.cs50 bldr.Append(buffer[current].Trim()).Append("\n\r"); in GetNextTag()
DEmulationManager.cs157 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/
DSDCard.cs542 .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/
DInterface.cs41 return new BitStream().Append((byte)0); in HandleClassRequest()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/GDB/
DPacketThreadId.cs52 .Append($"thread-id: {IdToString(ThreadId)}").ToString(); in ToString()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DMonitorPathCommand.cs43 monitorPath.Append(path.Value); in SetOrAdd()

12