Home
last modified time | relevance | path

Searched defs:predicate (Results 1 – 7 of 7) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Hooks/
DUartHooksExtensions.cs17 … public static void AddCharHook(this IUART uart, Func<byte, bool> predicate, Action<byte> hook) in AddCharHook()
28 … public static void AddLineHook(this IUART uart, Func<string, bool> predicate, Action<string> hook) in AddLineHook()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Collections/
DTreeBase.cs70 public TNode TryGetNode(Func<TValue, bool> predicate) in TryGetNode()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DMAX32650_SPI.cs133 private void DeassertCS(Func<int, bool> predicate) in DeassertCS()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Time/
DTimeSourceBase.cs951 public void RegisterTestPhase(Func<T, Boolean> predicate) in RegisterTestPhase()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/
DIMachine.cs23 void AddUserStateHook(Func<string, bool> predicate, Action<string> hook); in AddUserStateHook()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs393 …public static int IndexOf<TSource>(this IEnumerable<TSource> source, Func<TSource, bool> predicate) in IndexOf()
406 …ic static int LastIndexOf<TSource>(this IEnumerable<TSource> source, Func<TSource, bool> predicate) in LastIndexOf()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DMachine.cs942 public void AddUserStateHook(Func<string, bool> predicate, Action<string> hook) in AddUserStateHook()