Lines Matching refs:Peripheral
167 …ies = peripheralsCollectionByContext[context].Peripherals.Where(x => x.Peripheral == peripheral).T… in MoveRegistrationWithinContext()
292 LogPeripheralAccess(p.Peripheral, enable); in LogAllPeripheralsAccess()
328 EnableAllTranslations(p.Peripheral, enable); in EnableAllTranslations()
561 return registered.Peripheral; in WhatPeripheralIsAt()
569 .Where(x => x.Peripheral is MappedMemory) in FindMemory()
577 .Any(x => x.Peripheral is IMemory && x.RegistrationPoint.Range.Contains(address)); in IsMemory()
583 .Where(x => x.Peripheral is IMapped) in GetMappedPeripherals()
590 .Where(x => x.Peripheral is T); in GetRegistrationsForPeripheralType()
615 var memory = target.What.Peripheral as MappedMemory; in ReadBytes()
662 var multibytePeripheral = target.What.Peripheral as IMultibyteWritePeripheral; in WriteBytes()
978 .Where(x => x.Peripheral == peripheral) in GetRegistrationPoints()
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()
1298 RemoveContextKeys(busRegistered.Peripheral); in UnregisterInner()
1323 methods.Peripheral = peripheral; in FillAccessMethodsWithTaggedMethods()
1375 methods.Peripheral = peripheral; in FillAccessMethodsWithDefaultMethods()
1652 FillAccessMethodsWithTaggedMethods(pam.Peripheral, pam.Tag, ref pam); in UpdateAccessMethods()
1656 FillAccessMethodsWithDefaultMethods(pam.Peripheral, ref pam); in UpdateAccessMethods()
1815 var iMemory = target.What.Peripheral as IMemory; in ThrowIfNotAllMemory()
1816 var redirector = target.What.Peripheral as Redirector; in ThrowIfNotAllMemory()
1819 …ring.Format("Tried to access {0} but only memory accesses were allowed.", target.What.Peripheral)); in ThrowIfNotAllMemory()
1841 …h(var p in allPeripherals.SelectMany(x => x.Peripherals).Select(x => x.Peripheral).Distinct().Unio… in ClearAll()
1888 …return allPeripherals.SelectMany(x => x.Peripherals).Where(x => x.Peripheral is MappedMemory).Orde… in ObtainMemoryList()
1889 Select(x => x.Peripheral).Cast<MappedMemory>().Distinct().ToList(); in ObtainMemoryList()