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,
168
if (destination.IsEmpty || _virtualPosition >=
_realSize
)
173
int toRead = (int)Math.Min(destination.Length,
_realSize
- _virtualPosition);
206
if (buffer.IsEmpty || _virtualPosition >=
_realSize
)
219
int toRead = (int)Math.Min(buffer.Length,
_realSize
- _virtualPosition);
230
long nextSegStart = ~segIdx < _segments.Length ? _segments[~segIdx].Offset :
_realSize
;
323
if (destination.Length <
_realSize
)
325
destination.SetLength(
_realSize
);
328
_virtualPosition =
_realSize
;