6 writes to _uid
System.Formats.Tar (6)
System\Formats\Tar\TarEntry.cs (1)
188
_header.
_uid
= value;
System\Formats\Tar\TarHeader.cs (1)
103
_uid
= other._uid;
System\Formats\Tar\TarHeader.Read.cs (2)
160
_uid
= uid;
430
_uid
= TarHelpers.ParseNumeric<int>(buffer.Slice(FieldLocations.Uid, FieldLengths.Uid)),
System\Formats\Tar\TarHeader.Write.cs (1)
469
_uid
= RootUidGid,
System\Formats\Tar\TarWriter.Unix.cs (1)
98
entry._header.
_uid
= (int)status.Uid;
5 references to _uid
System.Formats.Tar (5)
System\Formats\Tar\TarEntry.cs (1)
185
get => _header.
_uid
;
System\Formats\Tar\TarHeader.cs (2)
103
_uid = other.
_uid
;
239
AddOrRemoveNumericField(ea, PaxEaUid,
_uid
, Octal8ByteFieldMaxValue, removeIfUnneeded);
System\Formats\Tar\TarHeader.Write.cs (2)
657
if (
_uid
>= 0)
659
checksum += FormatNumeric(
_uid
, buffer.Slice(FieldLocations.Uid, FieldLengths.Uid));