Lines Matching refs:mappingsForPeripheral
237 foreach(var mapping in mappingsForPeripheral.SelectMany(x => x.Value) in Register()
1278 if(mappingsForPeripheral.ContainsKey(busRegistered.Peripheral)) in UnregisterInner()
1282 …foreach(var mapping in mappingsForPeripheral[busRegistered.Peripheral].Where(x => busRegistered.Re… in UnregisterInner()
1287 … mappingsForPeripheral[busRegistered.Peripheral].RemoveAll(x => toRemove.Contains(x)); in UnregisterInner()
1288 if(mappingsForPeripheral[busRegistered.Peripheral].Count == 0) in UnregisterInner()
1290 mappingsForPeripheral.Remove(busRegistered.Peripheral); in UnregisterInner()
1879 mappingsForPeripheral = new Dictionary<IBusPeripheral, List<MappedSegmentWrapper>>(); in InitStructures()
1899 if(mappingsForPeripheral.ContainsKey(owner)) in AddMappings()
1901 mappingsForPeripheral[owner].AddRange(newMappings); in AddMappings()
1905 mappingsForPeripheral[owner] = mappingsList; in AddMappings()
1943 if(!mappingsForPeripheral.ContainsKey(peripheral)) in RemoveMappingsForPeripheral()
1947 foreach(var mapping in mappingsForPeripheral[peripheral]) in RemoveMappingsForPeripheral()
1951 mappingsForPeripheral.Remove(peripheral); in RemoveMappingsForPeripheral()
2238 private Dictionary<IBusPeripheral, List<MappedSegmentWrapper>> mappingsForPeripheral; field in Antmicro.Renode.Peripherals.Bus.SystemBus