Home
last modified time | relevance | path

Searched refs:ByteRead (Results 1 – 6 of 6) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/UI/
DConsoleIOSource.cs70 public bool IsAnythingAttached => (ByteRead != null);
72 public event Action<int> ByteRead; event in Antmicro.Renode.UI.ConsoleIOSource
91 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 …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/UART/
DUARTBackend.cs45 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
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Analyzers/
DSocketUartAnalyzer.cs85 ByteRead?.Invoke(b); in InvokeByteRead()
96 public event Action<int> ByteRead; event in Antmicro.Renode.Analyzers.SocketUartAnalyzer.SimpleActiveIOSource
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DSocketIOSource.cs44 public event System.Action<int> ByteRead property in Antmicro.Renode.Utilities.SocketIOSource
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/
DSystemBusTests.cs221 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.ParametrizedRegistrationPeripheral
558 parent.ByteRead = true; in GetReadByteMethod()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Wireless/
DSlipRadio.cs51 io.ByteRead += CharReceived; in Initialize()