Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/RESD/
DRESDStream.cs241 if(currentBlock == null) in TryGetSample()
243 if(!TryGetNextBlock(out currentBlock)) in TryGetSample()
250 switch(currentBlock.TryGetSample(timestamp, out sample)) in TryGetSample()
263 currentBlock = null; in TryGetSample()
323 public T CurrentSample => currentBlock?.CurrentSample;
324 public DataBlock<T> CurrentBlock => currentBlock;
332 if(!TryGetNextBlock(out currentBlock)) in PrereadFirstBlock()
336 ….Log(LogLevel.Debug, "RESD: First sample of the file has timestamp {0}ns", currentBlock.StartTime); in PrereadFirstBlock()
370 …serializedTimestamp = currentBlock != null ? currentBlock.CurrentTimestamp : currentTimestampInNan… in BeforeSerialization()
381 private DataBlock<T> currentBlock; field in Antmicro.Renode.Utilities.RESD.RESDStream