| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Collections/ |
| D | TwoWayDictionary.cs | 25 Remove(item); in Clear() 30 public bool Remove(TLeft left) in Remove() method in Antmicro.Renode.Utilities.Collections.TwoWayDictionary 33 return Remove(left, out tmp); in Remove() 40 if(!Remove(left, out oldRight)) in TryExchange() 53 if(!Remove(right, out oldLeft)) in TryExchange() 62 public bool Remove(TLeft left, out TRight right) in Remove() method in Antmicro.Renode.Utilities.Collections.TwoWayDictionary 77 public bool Remove(TRight right, out TLeft left) in Remove() method in Antmicro.Renode.Utilities.Collections.TwoWayDictionary 92 public bool Remove(TRight right) in Remove() method in Antmicro.Renode.Utilities.Collections.TwoWayDictionary 175 lefts.Remove(left); in RemoveExistingMapping() 176 rights.Remove(right); in RemoveExistingMapping()
|
| D | MultiValueDictionary.cs | 47 single.Remove(key); in Add() 67 single.Remove(key); in AddRange() 89 public bool Remove(TKey key) in Remove() method in Antmicro.Renode.Utilities.Collections.MultiValueDictionary 91 return single.Remove(key) || multiple.Remove(key); in Remove() 99 public bool Remove(TKey key, TValue value) in Remove() method in Antmicro.Renode.Utilities.Collections.MultiValueDictionary 104 return single.Remove(key); in Remove() 107 … if(multiple.TryGetValue(key, out existingMultipleValues) && existingMultipleValues.Remove(value)) in Remove() 113 multiple.Remove(key); in Remove()
|
| D | FastReadConcurrentTwoWayDictionary.cs | 53 public void Remove(TLeft left) in Remove() method in Antmicro.Renode.Utilities.Collections.FastReadConcurrentTwoWayDictionary 71 newRights.Remove(right); in TryRemove() 72 newLefts.Remove(left); in TryRemove() 85 public void Remove(TRight right) in Remove() method in Antmicro.Renode.Utilities.Collections.FastReadConcurrentTwoWayDictionary 93 newRights.Remove(right); in Remove() 94 newLefts.Remove(leftToRemove); in Remove()
|
| D | FastReadConcurrentCollection.cs | 29 public void Remove(T item) in Remove() method in Antmicro.Renode.Utilities.Collections.FastReadConcurrentCollection 34 copy.Remove(item); in Remove()
|
| D | SerializableWeakKeyDictionary.cs | 42 public bool Remove(TKey key) in Remove() method in Antmicro.Renode.Utilities.Collections.SerializableWeakKeyDictionary 51 return cwt.Remove(key); in Remove() 83 cwt.Remove(index); 149 public bool Remove(KeyValuePair<TKey, TValue> item) in Remove() method in Antmicro.Renode.Utilities.Collections.SerializableWeakKeyDictionary
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/ |
| D | MonitorExecutorExtensions.cs | 50 events.Remove(machine, name); in StopPythonExecution() 57 events.Remove(machine, name); in UnregisterEvent() 111 Remove(machine, name); in WithdrawAction() 116 public void Remove(IMachine machine, String name) in Remove() method in Antmicro.Renode.UserInterface.MonitorExecutorExtensions.PeriodicEventsRegister 120 periodicEvents.Remove(Tuple.Create(machine, name)); in Remove()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/UI/XwtProvider/ |
| D | WindowedUserInterfaceProvider.cs | 34 window.Closed += (sender, e) => openedWindows.Remove(analyzer); in ShowAnalyser() 51 openedWindows.Remove(analyzer); in HideAnalyser()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Wireless/ |
| D | InterferenceQueue.cs | 46 Remove(sender); in Add() 57 public static void Remove(IRadio sender) in Remove() method in Antmicro.Renode.Peripherals.Wireless.InterferenceQueue 73 overTheAirPackets.Remove(entry); in Remove() 84 overTheAirPackets.Remove(entry); in Remove()
|
| D | WirelessMedium.cs | 39 radios.Remove(radio); in DetachFrom() 40 radioHooks.Remove(radio); in DetachFrom()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | LRUCache.cs | 30 ordering.Remove(item.Position); in TryGetValue() 51 values.Remove(ordering.Last.Value); in Add()
|
| D | SafeStringBuilder.cs | 48 buffer.Remove(0, toUnload); in Unload()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Time/ |
| D | HandlesCollection.cs | 106 ready.Remove(handle); in UpdateHandle() 112 notReady.Remove(handle); in UpdateHandle() 197 list.Remove(current); in InnerLatchAndCollectGarbage()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/ |
| D | RangeTests.cs | 206 Assert.IsFalse(ranges.Remove(new Range(0x0, 0x1000))); in MinimalRangesCollectionRemoveOutside() 207 Assert.IsFalse(ranges.Remove(new Range(0x2000, 0x1000))); in MinimalRangesCollectionRemoveOutside() 208 Assert.IsFalse(ranges.Remove(new Range(0x8000, 0x1000))); in MinimalRangesCollectionRemoveOutside() 223 var wasRemoved = ranges.Remove(sub); in MinimalRangesCollectionRemoveSubrange()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ |
| D | Cluster.cs | 58 clusters.Remove(cluster); in Unregister() 74 cpus.Remove(cpu); in Unregister()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/ |
| D | PeripheralCollection.cs | 138 shortBlocks.Remove(keyToRemove); in Move() 150 public void Remove(IPeripheral peripheral) in Remove() method in Antmicro.Renode.Peripherals.Bus.SystemBus.PeripheralCollection 160 shortBlocks.Remove(keyToRemove); in Remove() 166 public void Remove(ulong start, ulong end) in Remove() method in Antmicro.Renode.Peripherals.Bus.SystemBus.PeripheralCollection 174 shortBlocks.Remove(keyToRemove); in Remove()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/ |
| D | SPIMultiplexer.cs | 42 activeLowSignals.Remove(number); in SetActiveHigh() 124 chipSelects.Remove(number); in UpdateChipSelectState()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Tools/Network/ |
| D | CANHub.cs | 58 attached.Remove(iface); in DetachFrom() 60 handlers.Remove(iface); in DetachFrom()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/Registers/ |
| D | RegisterCollection.cs | 333 beforeReadHooks.Remove(offset); in RemoveBeforeReadHook() 346 afterReadHooks.Remove(offset); in RemoveAfterReadHook() 359 beforeWriteHooks.Remove(offset); in RemoveBeforeWriteHook() 372 afterWriteHooks.Remove(offset); in RemoveAfterWriteHook()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/PLIC/ |
| D | IrqContext.cs | 93 enabledSources.Remove(s); in EnableSource() 143 if(pendingSources.Remove(s)) in RemovePendingStatusFromSource()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Plugins/ |
| D | PluginManager.cs | 127 activePlugins.Remove(plugin); in DisablePlugin() 128 disabledPlugins.Remove(plugin); in DisablePlugin() 165 enabledPlugins.Remove(plugin); in EnablePlugin()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Config/Devices/ |
| D | DevicesConfig.cs | 164 devContent.Remove(TYPE_NODE); in InitializeSingleDevice() 182 devContent.Remove(IRQ_NODE); in InitializeSingleDevice() 187 devContent.Remove(GPIO_NODE); in InitializeSingleDevice() 194 devContent.Remove(IRQ_FROM_NODE); in InitializeSingleDevice() 199 devContent.Remove(GPIO_FROM_NODE); in InitializeSingleDevice() 206 devContent.Remove(CONNECTION_NODE); in InitializeSingleDevice() 463 deferred.Remove(deferredDevice.Key); in DevicesConfig() 552 arrays.ForEach(a => devices.Remove(a)); in GetShortInfo()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/ |
| D | Infrastructure_NET.csproj | 71 <Compile Remove="Plugins/**/*"/> 72 <Compile Remove="Emulator/Main/Tests/**/*"/> 73 <Compile Remove="Emulator/Main/Utilities/AdHocCompiler.cs"/> 74 <Compile Remove="Emulator/Peripherals/Test/**/*"/> 75 <Compile Remove="Emulator/Extensions/MonitorTests/**/*" /> 76 <Compile Remove="Emulator/Extensions/TAPHelper/DynamicModuleSpawner.cs" /> 81 <Compile Remove="**/obj/**/*AssemblyInfo.cs"/> 82 <Compile Remove="**/obj/**/*AssemblyAttributes.cs"/>
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USB/ |
| D | USBHost.cs | 47 devices.Remove(peripheral); in Unregister() 48 ChildCollection.Remove(address); in Unregister()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/ |
| D | Range.cs | 256 ranges.Remove(expandableRange); in Add() 301 public bool Remove(Range range) in Remove() method in Antmicro.Renode.Core.MinimalRangesCollection 328 ranges.Remove(overlappingRange); in SubtractAll()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/Backends/ |
| D | LoggerBackend.cs | 34 peripheralsWithDifferentLogging.Remove(sourceId); in SetLogLevel()
|