8 writes to _positionInSuperStream
System.Formats.Tar (8)
System\Formats\Tar\SeekableSubReadStream.cs (3)
39
_positionInSuperStream
= _startInSuperStream + value;
63
_positionInSuperStream
+= bytesRead;
98
_positionInSuperStream
= newPositionInSuperStream;
System\Formats\Tar\SubReadStream.cs (5)
31
_positionInSuperStream
= startPosition;
76
_positionInSuperStream
= _endInSuperStream;
85
_positionInSuperStream
= _endInSuperStream;
117
_positionInSuperStream
+= ret;
159
_positionInSuperStream
+= ret;
9 references to _positionInSuperStream
System.Formats.Tar (9)
System\Formats\Tar\SeekableSubReadStream.cs (7)
32
return
_positionInSuperStream
- _startInSuperStream;
52
if ((ulong)(
_positionInSuperStream
+ count) > (ulong)_endInSuperStream)
54
count = Math.Max(0, (int)(_endInSuperStream -
_positionInSuperStream
));
88
SeekOrigin.Current =>
_positionInSuperStream
+ offset,
100
return
_positionInSuperStream
- _startInSuperStream;
105
if (
_positionInSuperStream
!= _superStream.Position)
109
_superStream.Seek(
_positionInSuperStream
, SeekOrigin.Begin);
System\Formats\Tar\SubReadStream.cs (2)
52
return
_positionInSuperStream
- _startInSuperStream;
67
private long Remaining => _endInSuperStream -
_positionInSuperStream
;