Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/PCI/
DMPFS_PCIe.cs177 var barCandidates = memoryMap.Where(x => x.Key.Contains(translatedAddress)); in WriteDoubleWordEcam()
216 var barCandidates = memoryMap.Where(x => x.Key.Contains(translatedAddress)); in ReadDoubleWordEcam()
299 …var previousRegistration = memoryMap.Where(x => x.Value.BarNumber == bar && x.Value.TargetPeripher… in RegisterBar()
302 memoryMap.Remove(previousRegistration.SingleOrDefault()); in RegisterBar()
304 memoryMap[range] = new TargetBar { BarNumber = bar, TargetPeripheral = peripheral }; in RegisterBar()
312 … private readonly Dictionary<Range, TargetBar> memoryMap = new Dictionary<Range, TargetBar>(); field in Antmicro.Renode.Peripherals.PCI.MPFS_PCIe