Lines Matching refs:Peripheral
49 … return blocks.Union(shortBlocks.Select(x => x.Value)).Select(x => x.Peripheral).Distinct();
60 …var name = string.Format("{0} @ {1}.", peripheral.Peripheral.GetType().Name, peripheral.Registrati… in Add()
62 …k = new Block { Start = start, End = end, AccessMethods = accessMethods, Peripheral = peripheral }; in Add()
114 Add(block.Start, block.End, block.Peripheral, block.AccessMethods); in Coalesce()
120 …redPeripheral = new BusRegistered<IBusPeripheral>(registeredPeripheral.Peripheral, newRegistration… in Move()
123 var block = blocks.FirstOrDefault(x => x.Peripheral == registeredPeripheral); in Move()
124 if(block.Peripheral == registeredPeripheral) in Move()
126 blocks = blocks.Where(x => x.Peripheral != registeredPeripheral).ToArray(); in Move()
130 … block = shortBlocks.Values.FirstOrDefault(x => x.Peripheral == registeredPeripheral); in Move()
131 if(block.Peripheral != registeredPeripheral) in Move()
135 …var toRemove = shortBlocks.Where(x => x.Value.Peripheral != registeredPeripheral).Select(x => x.Ke… in Move()
155 blocks = blocks.Where(x => x.Peripheral.Peripheral != peripheral).ToArray(); in Remove()
157 …var toRemove = shortBlocks.Where(x => x.Value.Peripheral.Peripheral == peripheral).Select(x => x.K… in Remove()
186 if(peripheral != null && block.Peripheral.Peripheral != peripheral) in VisitAccessMethods()
195 if(peripheral != null && dEntry.Value.Peripheral.Peripheral != peripheral) in VisitAccessMethods()
332 public IBusRegistered<IBusPeripheral> Peripheral; field