Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/
DMAX30208.cs202 if(currentSampleEnumerator == null || !currentSampleEnumerator.TryGetNext(out output)) in DequeueSampleByte()
209 currentSampleEnumerator.TryGetNext(out output); in DequeueSampleByte()
DMAX86171.cs1067 … if(currentSampleEnumerator == null || !currentSampleEnumerator.TryGetNext(out output)) in DequeueByte()
1072 currentSampleEnumerator.TryGetNext(out output); in DequeueByte()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/RESD/
DRESDStream.cs347 while(blockEnumerator.TryGetNext(out var nextBlock)) in TryGetNextBlock()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs1626 public static bool TryGetNext<T>(this IEnumerator<T> @this, out T element) in TryGetNext() method in Antmicro.Renode.Utilities.Misc
1789 if(!enumerator.TryGetNext(out T prefix)) in Prefix()