Searched refs:EventRisingCollection (Results 1 – 1 of 1) sorted by relevance
24 … interruptEnable = new EventRisingCollection<bool>(numberOfGpios, () => RefreshInterrupts()); in GPIOInterruptManager()25 …interruptType = new EventRisingCollection<InterruptTrigger>(numberOfGpios, () => RefreshInterrupts… in GPIOInterruptManager()26 … interruptMask = new EventRisingCollection<bool>(numberOfGpios, () => RefreshInterrupts()); in GPIOInterruptManager()27 … pinDirection = new EventRisingCollection<Direction>(numberOfGpios, () => RefreshInterrupts()); in GPIOInterruptManager()155 private readonly EventRisingCollection<bool> interruptEnable;156 private readonly EventRisingCollection<InterruptTrigger> interruptType;157 private readonly EventRisingCollection<bool> interruptMask;158 private readonly EventRisingCollection<Direction> pinDirection;176 public class EventRisingCollection<T> : IArray<T> class in Antmicro.Renode.Peripherals.GPIOPort.GPIOInterruptManager178 public EventRisingCollection(uint size, Action onChanged) in EventRisingCollection() method in Antmicro.Renode.Peripherals.GPIOPort.GPIOInterruptManager.EventRisingCollection