6 writes to _devMajor
System.Formats.Tar (6)
System\Formats\Tar\PosixTarEntry.cs (3)
27_header._devMajor = 0; 41_header._devMajor = other._header._devMajor; 70_header._devMajor = value;
System\Formats\Tar\TarHeader.Read.cs (2)
168_devMajor = devMajor; 528_devMajor = TarHelpers.ParseNumeric<int>(buffer.Slice(FieldLocations.DevMajor, FieldLengths.DevMajor));
System\Formats\Tar\TarWriter.Unix.cs (1)
61entry._header._devMajor = (int)major;
8 references to _devMajor
System.Formats.Tar (8)
System\Formats\Tar\PosixTarEntry.cs (2)
41_header._devMajor = other._header._devMajor; 56get => _header._devMajor;
System\Formats\Tar\TarEntry.Unix.cs (2)
17Interop.CheckIo(Interop.Sys.CreateBlockDevice(destinationFileName, (uint)Mode, (uint)_header._devMajor, (uint)_header._devMinor), destinationFileName); 24Interop.CheckIo(Interop.Sys.CreateCharacterDevice(destinationFileName, (uint)Mode, (uint)_header._devMajor, (uint)_header._devMinor), destinationFileName);
System\Formats\Tar\TarHeader.Write.cs (4)
737if (_devMajor > 0) 739checksum += FormatNumeric(_devMajor, buffer.Slice(FieldLocations.DevMajor, FieldLengths.DevMajor)); 949if (_devMajor > Octal8ByteFieldMaxValue) 951ExtendedAttributes[PaxEaDevMajor] = _devMajor.ToString();