Searched refs:ByteRead (Results 1 – 6 of 6) sorted by relevance
70 public bool IsAnythingAttached => (ByteRead != null);72 public event Action<int> ByteRead; event in Antmicro.Renode.UI.ConsoleIOSource91 ByteRead?.Invoke(Console.Read()); in RedirectedHandling()116 ByteRead?.Invoke(ESCCode); in StandardHandling()117 ByteRead?.Invoke(CSICode); in StandardHandling()128 ByteRead?.Invoke(ESCCode); in StandardHandling()129 ByteRead?.Invoke(CSICode); in StandardHandling()130 ByteRead?.Invoke('1'); in StandardHandling()131 ByteRead?.Invoke(';'); in StandardHandling()132 ByteRead?.Invoke('5'); in StandardHandling()[all …]
45 io.ByteRead += ByteRead; in BindAnalyzer()73 io.ByteRead -= ByteRead; in UnbindAnalyzer()102 private void ByteRead(int b) in ByteRead() method in Antmicro.Renode.Peripherals.UART.UARTBackend
85 ByteRead?.Invoke(b); in InvokeByteRead()96 public event Action<int> ByteRead; event in Antmicro.Renode.Analyzers.SocketUartAnalyzer.SimpleActiveIOSource
44 public event System.Action<int> ByteRead property in Antmicro.Renode.Utilities.SocketIOSource
221 Assert.AreEqual(false, peripheral.ByteRead); in ShouldRegisterParametrizedPeripheral()228 Assert.AreEqual(true, peripheral.ByteRead); in ShouldRegisterParametrizedPeripheral()235 Assert.AreEqual(true, peripheral.ByteRead); in ShouldRegisterParametrizedPeripheral()242 Assert.AreEqual(true, peripheral.ByteRead); in ShouldRegisterParametrizedPeripheral()249 Assert.AreEqual(true, peripheral.ByteRead); in ShouldRegisterParametrizedPeripheral()528 public bool ByteRead { get; private set; } property in Antmicro.Renode.UnitTests.SystemBusTests.ParametrizedRegistrationPeripheral558 parent.ByteRead = true; in GetReadByteMethod()
51 io.ByteRead += CharReceived; in Initialize()