Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Collections/
DTreeBase.cs70 public TNode TryGetNode(Func<TValue, bool> predicate) in TryGetNode() method in Antmicro.Renode.Utilities.Collections.TreeBase
78 var node = child.TryGetNode(predicate); in TryGetNode()
106 public TNode TryGetNode(TValue valueToFind) in TryGetNode() method in Antmicro.Renode.Utilities.Collections.TreeBase
108 return TryGetNode(val => valueToFind.Equals(val)); in TryGetNode()
DMultiTree.cs28 public bool TryGetNode(TValue value, out MultiTreeNode<TValue, TConnectionWay> node) in TryGetNode() method in Antmicro.Renode.Utilities.Collections.MultiTree
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DMachine.cs123 var node = registeredPeripherals.TryGetNode(peripheral); in GetParentPeripherals()
129 var node = registeredPeripherals.TryGetNode(peripheral); in GetChildrenPeripherals()
135 var parentNode = registeredPeripherals.TryGetNode(parentPeripheral); in GetPeripheralRegistrationPoints()
182 … if(removedPeripheral != null && registeredPeripherals.TryGetNode(removedPeripheral) == null) in UnregisterAsAChildOf()