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)
62
entry._header.
_devMinor
= (int)minor;
8 references to _devMinor
System.Formats.Tar (8)
System\Formats\Tar\PosixTarEntry.cs (2)
42
_header._devMinor = other._header.
_devMinor
;
82
get => _header.
_devMinor
;
System\Formats\Tar\TarEntry.Unix.cs (2)
17
Interop.CheckIo(Interop.Sys.CreateBlockDevice(destinationFileName, (uint)Mode, (uint)_header._devMajor, (uint)_header.
_devMinor
), destinationFileName);
24
Interop.CheckIo(Interop.Sys.CreateCharacterDevice(destinationFileName, (uint)Mode, (uint)_header._devMajor, (uint)_header.
_devMinor
), destinationFileName);
System\Formats\Tar\TarHeader.Write.cs (4)
742
if (
_devMinor
> 0)
744
checksum += FormatNumeric(
_devMinor
, buffer.Slice(FieldLocations.DevMinor, FieldLengths.DevMinor));
958
if (
_devMinor
> Octal8ByteFieldMaxValue)
960
ExtendedAttributes[PaxEaDevMinor] =
_devMinor
.ToString();