6 writes to _devMinor
System.Formats.Tar (6)
System\Formats\Tar\PosixTarEntry.cs (3)
28_header._devMinor = 0; 42_header._devMinor = other._header._devMinor; 96_header._devMinor = value;
System\Formats\Tar\TarHeader.Read.cs (2)
174_devMinor = devMinor; 531_devMinor = TarHelpers.ParseNumeric<int>(buffer.Slice(FieldLocations.DevMinor, FieldLengths.DevMinor));
System\Formats\Tar\TarWriter.Unix.cs (1)
62entry._header._devMinor = (int)minor;
8 references to _devMinor
System.Formats.Tar (8)
System\Formats\Tar\PosixTarEntry.cs (2)
42_header._devMinor = other._header._devMinor; 82get => _header._devMinor;
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)
742if (_devMinor > 0) 744checksum += FormatNumeric(_devMinor, buffer.Slice(FieldLocations.DevMinor, FieldLengths.DevMinor)); 958if (_devMinor > Octal8ByteFieldMaxValue) 960ExtendedAttributes[PaxEaDevMinor] = _devMinor.ToString();