6 writes to _gid
System.Formats.Tar (6)
System\Formats\Tar\TarEntry.cs (1)
93
_header.
_gid
= value;
System\Formats\Tar\TarHeader.cs (1)
104
_gid
= other._gid;
System\Formats\Tar\TarHeader.Read.cs (2)
166
_gid
= gid;
431
_gid
= TarHelpers.ParseNumeric<int>(buffer.Slice(FieldLocations.Gid, FieldLengths.Gid)),
System\Formats\Tar\TarHeader.Write.cs (1)
470
_gid
= RootUidGid,
System\Formats\Tar\TarWriter.Unix.cs (1)
107
entry._header.
_gid
= (int)status.Gid;
5 references to _gid
System.Formats.Tar (5)
System\Formats\Tar\TarEntry.cs (1)
90
get => _header.
_gid
;
System\Formats\Tar\TarHeader.cs (2)
104
_gid = other.
_gid
;
240
AddOrRemoveNumericField(ea, PaxEaGid,
_gid
, Octal8ByteFieldMaxValue, removeIfUnneeded);
System\Formats\Tar\TarHeader.Write.cs (2)
662
if (
_gid
>= 0)
664
checksum += FormatNumeric(
_gid
, buffer.Slice(FieldLocations.Gid, FieldLengths.Gid));