Home
last modified time | relevance | path

Searched refs:Remove (Results 1 – 25 of 82) sorted by relevance

1234

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Collections/
DTwoWayDictionary.cs25 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()
DMultiValueDictionary.cs47 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()
DFastReadConcurrentTwoWayDictionary.cs53 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()
DFastReadConcurrentCollection.cs29 public void Remove(T item) in Remove() method in Antmicro.Renode.Utilities.Collections.FastReadConcurrentCollection
34 copy.Remove(item); in Remove()
DSerializableWeakKeyDictionary.cs42 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/
DMonitorExecutorExtensions.cs50 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/
DWindowedUserInterfaceProvider.cs34 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/
DInterferenceQueue.cs46 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()
DWirelessMedium.cs39 radios.Remove(radio); in DetachFrom()
40 radioHooks.Remove(radio); in DetachFrom()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DLRUCache.cs30 ordering.Remove(item.Position); in TryGetValue()
51 values.Remove(ordering.Last.Value); in Add()
DSafeStringBuilder.cs48 buffer.Remove(0, toUnload); in Unload()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Time/
DHandlesCollection.cs106 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/
DRangeTests.cs206 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/
DCluster.cs58 clusters.Remove(cluster); in Unregister()
74 cpus.Remove(cpu); in Unregister()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DPeripheralCollection.cs138 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/
DSPIMultiplexer.cs42 activeLowSignals.Remove(number); in SetActiveHigh()
124 chipSelects.Remove(number); in UpdateChipSelectState()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Tools/Network/
DCANHub.cs58 attached.Remove(iface); in DetachFrom()
60 handlers.Remove(iface); in DetachFrom()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/Registers/
DRegisterCollection.cs333 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/
DIrqContext.cs93 enabledSources.Remove(s); in EnableSource()
143 if(pendingSources.Remove(s)) in RemovePendingStatusFromSource()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Plugins/
DPluginManager.cs127 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/
DDevicesConfig.cs164 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/
DInfrastructure_NET.csproj71 <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/
DUSBHost.cs47 devices.Remove(peripheral); in Unregister()
48 ChildCollection.Remove(address); in Unregister()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DRange.cs256 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/
DLoggerBackend.cs34 peripheralsWithDifferentLogging.Remove(sourceId); in SetLogLevel()

1234