1 write to _realSize
System.Formats.Tar (1)
System\Formats\Tar\GnuSparseStream.cs (1)
52
_realSize
= realSize;
12 references to _realSize
System.Formats.Tar (12)
System\Formats\Tar\GnuSparseStream.cs (12)
79
if (offset < previousEnd || offset >
_realSize
|| length >
_realSize
- offset)
108
return
_realSize
;
145
SeekOrigin.End =>
_realSize
+ offset,
169
if (destination.IsEmpty || _virtualPosition >=
_realSize
)
174
int toRead = (int)Math.Min(destination.Length,
_realSize
- _virtualPosition);
207
if (buffer.IsEmpty || _virtualPosition >=
_realSize
)
220
int toRead = (int)Math.Min(buffer.Length,
_realSize
- _virtualPosition);
231
long nextSegStart = ~segIdx < _segments.Length ? _segments[~segIdx].Offset :
_realSize
;
324
if (destination.Length <
_realSize
)
326
destination.SetLength(
_realSize
);
329
_virtualPosition =
_realSize
;