6 writes to _gid
System.Formats.Tar (6)
System\Formats\Tar\TarEntry.cs (1)
91
set => _header.
_gid
= value;
System\Formats\Tar\TarHeader.cs (1)
108
_gid
= other._gid;
System\Formats\Tar\TarHeader.Read.cs (2)
152
_gid
= gid;
397
_gid
= TarHelpers.ParseNumeric<int>(buffer.Slice(FieldLocations.Gid, FieldLengths.Gid)),
System\Formats\Tar\TarHeader.Write.cs (1)
471
_gid
= RootUidGid,
System\Formats\Tar\TarWriter.Unix.cs (1)
85
entry._header.
_gid
= (int)status.Gid;
6 references to _gid
System.Formats.Tar (6)
System\Formats\Tar\TarEntry.cs (1)
90
get => _header.
_gid
;
System\Formats\Tar\TarHeader.cs (1)
108
_gid = other.
_gid
;
System\Formats\Tar\TarHeader.Write.cs (4)
663
if (
_gid
>= 0)
665
checksum += FormatNumeric(
_gid
, buffer.Slice(FieldLocations.Gid, FieldLengths.Gid));
987
if (
_gid
> Octal8ByteFieldMaxValue)
989
ExtendedAttributes[PaxEaGid] =
_gid
.ToString();