Home
last modified time | relevance | path

Searched refs:Stringify (Results 1 – 22 of 22) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/
DZMOD4xxx.cs108 return Misc.Stringify(rField);
123 return Misc.Stringify(initConfigurationRField);
138 return Misc.Stringify(configuration);
153 return Misc.Stringify(productionData);
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Input/
DFusionF0710A.cs27 this.DebugLog("Writing {0}.", data.Select(x => x.ToString()).Stringify()); in Write()
44 …s.Log(LogLevel.Warning, "Unknown write data: {0}.", data.Select(x => x.ToString("X")).Stringify()); in Write()
69 … this.DebugLog("Read returning {0}.", returnValue.Select(x => x.ToString()).Stringify()); in Read()
DAR1021.cs27 this.DebugLog("Writing {0}.", data.Select(x => x.ToString()).Stringify()); in Write()
33 this.DebugLog("Read returning {0}.", returnValue.Select(x => x.ToString()).Stringify()); in Read()
DFT5336.cs68 …pty : ", values {0}".FormatWith(data.Skip(1).Select(x => "0x" + x.ToString("X")).Stringify(", "))); in Write()
/Renode-Infrastructure-v1.15.3-29f510e/src/Plugins/TracePlugin/Handlers/
DDefaultFunctionHandler.cs26 …Logger.Log(LogLevel.Debug, "Call {0} @ 0x{1:X} ({2})",functionName, pc, arguments.Stringify(", ")); in CallHandler()
/Renode-Infrastructure-v1.15.3-29f510e/src/Plugins/TracePlugin/
DTraceCommand.cs50 writer.WriteLine(handlers.Keys.Select(x => "- " + x).Stringify("\r\n")); in PrintHelp()
53 …ctionCallParameterType)).Where(x => !x.Contains("Array")).Select(x => "- " + x).Stringify("\r\n")); in PrintHelp()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DAmbiqApollo4_Security.cs51 …for CRC32 calculation:\n{0}", data.Select(b => "0x" + b.ToString("X2")).Stringify(limitPerLine: 8)… in CalculateCrc32()
DOpenTitan_AES.cs249 this.Log(LogLevel.Debug, "Generated key: {0}", Misc.Stringify(key, " ")); in ConfigureAES()
282 this.Log(LogLevel.Debug, "Generated 'DATA_OUT' : {0}", Misc.Stringify(output, " ")); in TransformData()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/
DQuectel_BG96.cs180 …vel.Warning, "TCP/IP config value '{0}' set to {1}, not implemented", parameter, args.Stringify()); in Qicfg()
DQuectel_BC660K.cs238 …vel.Warning, "TCP/IP config value '{0}' set to {1}, not implemented", parameter, args.Stringify()); in Qicfg()
DQuectelModem.cs519 parameter, args.Stringify()); in Qicfg()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MemoryControllers/
DOpenTitan_ROMController.cs123 return key.Select(x => "{0:X16}".FormatWith(x)).Stringify();
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Plugins/
DPluginManager.cs196 … .FormatWith(name, plugins.Select(x => "\"{0}\"".FormatWith(x.FullName)).Stringify(", ")))); in FindPluginFromName()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Wireless/
DEmberRadio.cs256 … this.Log(LogLevel.Info, "data = {0}", dataToSend.Select(x => x.ToString("X")).Stringify()); in WriteDoubleWord()
DCC1200.cs386 … this.DebugLog("Received frame {0}.", bytes.Select(x => "0x{0:X}".FormatWith(x)).Stringify()); in ReceiveFrame()
623 … this.DebugLog("Sending frame {0}.", data.Select(x => "0x{0:X}".FormatWith(x)).Stringify()); in SendFrame()
DCC2538RF.cs647 … this.DebugLog("Sending frame {0}.", frame.Bytes.Select(x => "0x{0:X}".FormatWith(x)).Stringify()); in SendData()
DCC2520.cs461 … this.DebugLog("Sending frame {0}.", frame.Bytes.Select(x => "0x{0:X}".FormatWith(x)).Stringify()); in SendFrame()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/ATAPI/
DATAPI.cs180 … this.Log(LogLevel.Noisy , "Received command packet: {0}", Misc.Stringify(receivedCommand, " ")); in GatherPacket()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs427 …public static string Stringify<TSource>(this IEnumerable<TSource> source, string separator = " ", … in Stringify() method in Antmicro.Renode.Utilities.Misc
429 …return Stringify(source.Select(x => x == null ? String.Empty : x.ToString()), separator, limitPerL… in Stringify()
432 …public static string Stringify(this IEnumerable<string> source, string separator = " ", int limitP… in Stringify() method in Antmicro.Renode.Utilities.Misc
DBitHelper.cs413 …x, i) => endings[i] == x ? x.ToString() : string.Format("{0}-{1}", x, endings[i])).Stringify(", "); in GetSetBitsPretty()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/Registers/
DPeripheralRegister.cs795 …tagsAffected.Select(x => "{0} (0x{1:X})".FormatWith(x.Name, x.Value)).Stringify(", ")) : String.Em… in TagLogger()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitor.cs301 …ult.Tokens.Take(result.Tokens.Count() - 1).Select(x => x.OriginalValue).Stringify() + lastExpanded… in Tokenize()