Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Sensor/
DSensorSamplesPacket.cs59 …ar rawSample = stream.ReadBytes(valueSize.Value * valueDimensions.Value, throwIfEndOfStream: true); in ParseFile()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs146 … public static byte[] ReadBytes(this Stream stream, int count, bool throwIfEndOfStream = false) in ReadBytes() argument
168 if(throwIfEndOfStream && read < count) in ReadBytes()