6 writes to _gid
System.Formats.Tar (6)
System\Formats\Tar\TarEntry.cs (1)
91set => _header._gid = value;
System\Formats\Tar\TarHeader.cs (1)
108_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)
439_gid = 0,
System\Formats\Tar\TarWriter.Unix.cs (1)
82entry._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)
108_gid = other._gid;
System\Formats\Tar\TarHeader.Write.cs (4)
627if (_gid > 0) 629checksum += FormatNumeric(_gid, buffer.Slice(FieldLocations.Gid, FieldLengths.Gid)); 940if (_gid > Octal8ByteFieldMaxValue) 942ExtendedAttributes[PaxEaGid] = _gid.ToString();