Home
last modified time | relevance | path

Searched refs:loggingParent (Results 1 – 8 of 8) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DBitBangHelper.cs14 …ublic BitBangHelper(int width, bool outputMsbFirst = false, IEmulationElement loggingParent = null) in BitBangHelper() argument
16 outputDecoder = new Decoder(width, outputMsbFirst, loggingParent); in BitBangHelper()
17 inputEncoder = new Encoder(width, loggingParent); in BitBangHelper()
19 this.loggingParent = loggingParent; in BitBangHelper()
43 loggingParent?.Log(LogLevel.Noisy, "Tick detected"); in Update()
77 private readonly IEmulationElement loggingParent; field in Antmicro.Renode.Utilities.BitBangHelper
81 public Encoder(int width, IEmulationElement loggingParent = null) in Encoder() argument
83 this.loggingParent = loggingParent; in Encoder()
114loggingParent?.Log(LogLevel.Warning, "Trying to read bit, but the buffer is empty");
125 private readonly IEmulationElement loggingParent; field in Antmicro.Renode.Utilities.BitBangHelper.Encoder
[all …]
DBitPatternDetector.cs16 …blic BitPatternDetector(int width, IPeripheral loggingParent = null) : this(new bool[width], loggi… in BitPatternDetector() argument
20 public BitPatternDetector(bool[] resetValue, IPeripheral loggingParent = null) in BitPatternDetector() argument
22 this.loggingParent = loggingParent; in BitPatternDetector()
40loggingParent?.Log(LogLevel.Noisy, "Accepting new state [{0}]; previous state [{1}]", string.Join(… in AcceptState()
46 loggingParent?.Log(LogLevel.Noisy, "Pattern {0} decoded", items[i].name); in AcceptState()
67 private readonly IPeripheral loggingParent; field in Antmicro.Renode.Utilities.BitPatternDetector
DVideoCapturer.cs19 public static bool Start(string device, IEmulationElement loggingParent) in Start() argument
28 VideoCapturer.loggingParent = loggingParent; in Start()
30 loggingParent.Log(LogLevel.Debug, "Opening device: {0}...", device); in Start()
35 loggingParent.Log(LogLevel.Error, "Couldn't open device: {0}", device); in Start()
41loggingParent.Log(LogLevel.Error, "Device does not support JPEG output: {0}", device); in Start()
70 loggingParent.Log(LogLevel.Debug, "Grabbing a frame..."); in GrabSingleFrame()
176 loggingParent.Log(LogLevel.Debug, "Requesting video IO buffer..."); in RequestBuffer()
204 loggingParent.Log(LogLevel.Debug, "Freeing video IO buffer..."); in FreeBuffer()
233loggingParent.Log(LogLevel.Error, "There was an error when executing the {0} ioctl: {1} (0x{2:X})"… in DoIoctl()
244 private static IEmulationElement loggingParent; field in Antmicro.Renode.VideoCapturer
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Sound/
DPCMDecoder.cs18 …samplingRateHz, uint numberOfChannels, bool concatenatedChannels, IPeripheral loggingParent = null) in PCMDecoder() argument
36 this.loggingParent = loggingParent; in PCMDecoder()
75loggingParent?.Log(LogLevel.Warning, "Cropping the sample from 0x{0:X} to 0x{1:X} to fit to the sa… in LoadSample()
110 private readonly IPeripheral loggingParent; field in Antmicro.Renode.Peripherals.Sound.PCMDecoder
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DLiteX_SPI_Flash.cs24 bbHelper = new BitBangHelper(8, loggingParent: this, outputMsbFirst: true); in LiteX_SPI_Flash()
DPicoRV_SPI.cs23 bbHelper = new BitBangHelper(8, loggingParent: this, outputMsbFirst: true); in PicoRV_SPI()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/
DLiteX_Ethernet_CSR32.cs41 bbHelper = new BitBangHelper(width: 16, loggingParent: this); in LiteX_Ethernet_CSR32()
DLiteX_Ethernet.cs41 bbHelper = new BitBangHelper(width: 16, loggingParent: this); in LiteX_Ethernet()