Home
last modified time | relevance | path

Searched refs:hostEmulationElements (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DHostMachine.cs25 hostEmulationElements = new Dictionary<string, IHostMachineElement>(); in HostMachine()
30 if(hostEmulationElements.ContainsKey(name)) in AddHostMachineElement()
35 hostEmulationElements.Add(name, element); in AddHostMachineElement()
52 RemoveHostMachineElement(hostEmulationElements[name]); in RemoveHostMachineElement()
63 var key = hostEmulationElements.SingleOrDefault(x => x.Value == element).Key; in RemoveHostMachineElement()
64 hostEmulationElements.Remove(key); in RemoveHostMachineElement()
76 return hostEmulationElements.Keys; in GetNames()
82 success = hostEmulationElements.TryGetValue(name, out value); in TryGetByName()
88 var pair = hostEmulationElements.SingleOrDefault(x => x.Value == element); in TryGetName()
103 foreach(var element in hostEmulationElements) in Dispose()
[all …]