7 writes to bytePos
dotnet-svcutil-lib (7)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (6)
2940
_ps.
bytePos
= 0;
2972
_ps.
bytePos
= preambleLen;
3376
_ps.
bytePos
= _documentStartBytePos; // byte position after preamble
3379
_ps.
bytePos
+= _ps.encoding.GetByteCount(_ps.chars, 0, _ps.charPos);
3486
_ps.
bytePos
= 0;
3566
_ps.
bytePos
+= bytesCount;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImplHelpers.cs (1)
80
bytePos
= 0;
11 references to bytePos
dotnet-svcutil-lib (11)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (11)
2975
_documentStartBytePos = _ps.
bytePos
;
3167
Debug.Assert(_ps.
bytePos
== 0);
3423
if (_ps.bytesUsed - _ps.
bytePos
< MaxByteSequenceLen)
3474
int bytesLeft = _ps.bytesUsed - _ps.
bytePos
;
3483
BlockCopy(_ps.bytes, _ps.
bytePos
, _ps.bytes, 0, bytesLeft);
3497
if (_ps.
bytePos
== _ps.bytesUsed && _ps.bytes.Length - _ps.bytesUsed > 0)
3508
int originalBytePos = _ps.
bytePos
;
3512
if (charsRead == 0 && _ps.
bytePos
!= originalBytePos)
3547
int bytesCount = _ps.bytesUsed - _ps.
bytePos
;
3558
_ps.decoder.Convert(_ps.bytes, _ps.
bytePos
, bytesCount, _ps.chars, _ps.charsUsed, maxCharsCount, false, out bytesCount, out charsCount, out completed);
3583
_ps.decoder.Convert(_ps.bytes, _ps.
bytePos
+ bytesDecoded, 1, _ps.chars, _ps.charsUsed + charsDecoded, 1, false, out bDec, out chDec, out completed);