6 writes to _gid
System.Formats.Tar (6)
System\Formats\Tar\TarEntry.cs (1)
91set => _header._gid = value;
System\Formats\Tar\TarHeader.cs (1)
104_gid = other._gid;
System\Formats\Tar\TarHeader.Read.cs (2)
150_gid = gid; 395_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)
85entry._header._gid = (int)status.Gid;
6 references to _gid
System.Formats.Tar (6)
System\Formats\Tar\TarEntry.cs (1)
90get => _header._gid;
System\Formats\Tar\TarHeader.cs (1)
104_gid = other._gid;
System\Formats\Tar\TarHeader.Write.cs (4)
663if (_gid >= 0) 665checksum += FormatNumeric(_gid, buffer.Slice(FieldLocations.Gid, FieldLengths.Gid)); 976if (_gid > Octal8ByteFieldMaxValue) 978ExtendedAttributes[PaxEaGid] = _gid.ToString();