| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Collections/ |
| D | LazyList.cs | 25 public List<T> ToList() in ToList() method in Antmicro.Renode.Utilities.Collections.LazyList 27 return funcs.Select(x => x()).ToList(); in ToList()
|
| D | WeakMultiTable.cs | 41 … return snapshotRights.Where((r, index) => neededIndices.Contains(index)).Distinct().ToList(); in GetAllForLeft() 58 … return snapshotLefts.Where((l, index) => neededIndices.Contains(index)).Distinct().ToList(); in GetAllForRight() 124 lefts = snapshotLefts.Select(x => new WeakReference(x)).ToList(); in FromSnapshot() 125 rights = snapshotRights.Select(x => new WeakReference(x)).ToList(); in FromSnapshot()
|
| D | SerializableWeakKeyDictionary.cs | 104 }).Where(x => x != null).ToList(); 120 }).Where(x => x != null).ToList();
|
| D | SerializableWeakDictionary.cs | 270 keys = serializedKeys.Select(x => new WeakReference(x)).ToList(); in AfterDeserialization() 271 values = serializedValues.Select(x => new WeakReference(x)).ToList(); in AfterDeserialization()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/ |
| D | MultithreadContinueCommand.cs | 73 …= operations.Where(operation => !manager.ManagedCpus[operation.CoreId].TimeHandle.IsDone).ToList(); in TryHandleBlockingExecution() 74 … = operations.Where(operation => manager.ManagedCpus[operation.CoreId].TimeHandle.IsDone).ToList(); in TryHandleBlockingExecution() 77 … var blockedStep = blocked.Where(operation => operation.Type == OperationType.Step).ToList(); in TryHandleBlockingExecution() 81 … var stepping = blocking.Where(operation => operation.Type == OperationType.Step).ToList(); in TryHandleBlockingExecution() 102 … blockingContinue = blocking.Where(operation => operation.Type == OperationType.Continue).ToList(); in TryHandleBlockingExecution()
|
| D | Trace32Commands.cs | 51 …r.GetBytesFromValue(value, valueSize, reverse: cpu.Endianness == Endianess.LittleEndian)).ToList(); in Execute()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/ |
| D | SimpleContainer.cs | 31 return ChildCollection.Keys.Select(x => new NumberRegistrationPoint<int>(x)).ToList(); in GetRegistrationPoints() 38 …llection.Select(x => Registered.Create(x.Value, new NumberRegistrationPoint<int>(x.Key))).ToList(); 53 …hildCollection.Where(x => x.Value.Equals(peripheral)).Select(x => x.Key).ToList(); //ToList requir… in Unregister()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MTD/ |
| D | AMDCFIFlash.cs | 52 Enumerable.Repeat(0x2000L, 8).Concat(Enumerable.Repeat(0x10000L, 15)).ToList(), in AMDCFIFlash() 53 Enumerable.Repeat(0x10000L, 48).ToList(), in AMDCFIFlash() 54 Enumerable.Repeat(0x10000L, 48).ToList(), in AMDCFIFlash() 55 Enumerable.Repeat(0x10000L, 15).Concat(Enumerable.Repeat(0x2000L, 8)).ToList(), in AMDCFIFlash() 123 bankSectorSizes.Add(entry.ToList()); in AddSectorSizes()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/Backends/ |
| D | MemoryBackend.cs | 48 return entries.Skip(Math.Max(0, entries.Count() - numberOfElements)).ToList(); in GetMemoryLogEntries()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/ |
| D | MonitorCommands.cs | 95 …idateParameters.Where(x => typeof(ICommandInteraction).IsAssignableFrom(x.ParameterType)).ToList(); in RunCommand() 115 …didateParameters.Skip(writers.Count).Take(candidateParameters.Length - writers.Count - 1).ToList(); in RunCommand() 120 …tersWithoutLastArray = parameters.Take(candidateParametersWithoutArrayAndWriters.Count()).ToList(); in RunCommand() 124 … candidateParametersWithoutArrayAndWriters = candidateParameters.Skip(writers.Count).ToList(); in RunCommand() 1101 parameters = parameters.Skip(1).ToList(); in TryPrepareParameters() 1109 parameters = parameters.Take(parameters.Count - 1).ToList(); in TryPrepareParameters() 1253 var indexers = cache.Get(type, GetAvailableIndexers).ToList(); in ExecuteDeviceAction() 1256 var foundMethods = methods.Where(x => x.Name == commandValue).ToList(); in ExecuteDeviceAction() 1259 var foundExts = extensions.Where(x => x.Name == commandValue).ToList(); in ExecuteDeviceAction() 1261 … ? indexers.ToList() : indexers.Where(x => x.Name == commandValue).ToList(); in ExecuteDeviceAction() [all …]
|
| D | Monitor.cs | 351 var tokens = tokensToParse.ToList(); in ParseTokens() 744 … VariableToken ? ExpandVariable(x as VariableToken, variables) ?? x : x).ToList(); // ?? to preven… in ExpandVariables() 817 return RunCommand(writer, commandHandler, com.Skip(1).ToList()); in ExecuteCommand() 833 return RunCommand(writer, item, com.Skip(1).ToList()); in ExecuteCommand() 982 …bles.Keys.Concat(macros.Keys).Where(x => x.StartsWith(varName, StringComparison.Ordinal)).ToList(); in SuggestCommands() 1028 var sugg = Commands.Select(x => x.Name).ToList(); in SuggestCommands() 1060 var baseNames = GetAvailableNames().ToList(); in GetAllAvailableNames() 1096 var list = value.ToList(); 1111 var list = value.ToList(); in AllButLastAndAggregate()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/ |
| D | MachineExtensions.cs | 132 result.Add(entry, uniqueEntryList.Select(x => x.RegistrationPoint).ToList()); in GetPeripheralsWithAllRegistrationPoints() 141 …ry, uniqueEntryList.Where(x => x.Parent == sysbusEntry).Select(x => x.RegistrationPoint).ToList()); in GetPeripheralsWithAllRegistrationPoints()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/Wrappers/ |
| D | RegisterMapper.cs | 50 var closestCandidates = map.Keys.Where(k => k < offset).ToList(); in ToString()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Config/Devices/ |
| D | DevicesConfig.cs | 459 foreach(var deferredDevice in deferred.ToList()) in DevicesConfig() 549 …devices = ((JsonObject)SimpleJson.DeserializeObject<dynamic>(File.ReadAllText(filename))).ToList(); in GetShortInfo() 551 var arrays = devices.Where(d => d.Value is JsonArray).ToList(); in GetShortInfo() 553 …ct(a => a.Value).Cast<JsonArray>().SelectMany(y => y).Cast<JsonObject>().ToList().ForEach(x => dev… in GetShortInfo() 593 …tInterfaces().Where(x => IsSpecializationOfRawGeneric(typeof(IPeripheralRegister<,>), x)).ToList(); in RegisterInParents() 597 .ToList(); in RegisterInParents()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | AdHocCompiler_NET.cs | 40 AssemblyHelper.GetAssembliesLocations().ToList() in Compile()
|
| D | LINDecoder.cs | 167 var dataToTransmit = txQueue.ToList(); in Finalize()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/ |
| D | Connector.cs | 71 return connections.GetAllForLeft(obj).ToList(); in GetObjectsConnectedTo()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/Profiler/ |
| D | ProfilerHeader.cs | 27 var cpus = peripherals.Where(x => x.Peripheral is ICPU).ToList(); in RegisterPeripherals()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/X86/ACPI/ |
| D | ACPIExtensions.cs | 37 var ids = bus.GetCPUs().OfType<BaseX86>().Select(x => (ulong)x.Lapic.ID).ToList(); in GenerateACPITable()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/S32K3XX_FlexIO/ |
| D | Interrupt.cs | 35 ).ToList().AsReadOnly(); in BuildRegisters()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/TAPHelper/ |
| D | DynamicModuleSpawner_NET.cs | 78 AssemblyHelper.GetAssembliesLocations().ToList() in GenerateTAPHelper()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/ |
| D | AmbiqApollo4_IOMaster.cs | 99 .ToList(); in GetRegistrationPoints() 105 .ToList(); in GetRegistrationPoints() 109 …ed.Create(x.Value, new TypedNumberRegistrationPoint<int>(x.Key, typeof(ISPIPeripheral)))).ToList(); 112 …ed.Create(x.Value, new TypedNumberRegistrationPoint<int>(x.Key, typeof(II2CPeripheral)))).ToList(); 804 …ve = container.Where(x => x.Value.Equals(peripheral)).Select(x => x.Key).ToList(); //ToList requir…
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/Cadence_xSPICommands/ |
| D | STIGCommands.cs | 163 var dataList = data.ToList(); in ReadData()
|
| D | PIOCommands.cs | 204 var dataList = data.ToList(); in ReadData()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/ |
| D | EOSS3_FlexibleFusionEngine.cs | 66 … var toRemove = children.Where(x => x.Value.Equals(peripheral)).Select(x => x.Key).ToList(); in Unregister()
|