8 references to LinkName
System.Formats.Tar (8)
System\Formats\Tar\FieldLocations.cs (2)
23
internal const ushort Magic = LinkName + FieldLengths.
LinkName
;
49
internal const ushort V7Padding = LinkName + FieldLengths.
LinkName
;
System\Formats\Tar\TarHeader.Read.cs (1)
396
_linkName = TarHelpers.GetTrimmedUtf8String(buffer.Slice(FieldLocations.LinkName, FieldLengths.
LinkName
))
System\Formats\Tar\TarHeader.Write.cs (5)
365
if (_linkName != null && Encoding.UTF8.GetByteCount(_linkName) > FieldLengths.
LinkName
)
401
if (_linkName != null && Encoding.UTF8.GetByteCount(_linkName) > FieldLengths.
LinkName
)
647
if (GetUtf8TextLength(linkName) > FieldLengths.
LinkName
)
654
int truncatedLength = GetUtf16TruncatedTextLength(linkName, FieldLengths.
LinkName
);
658
checksum += WriteAsUtf8String(linkName, buffer.Slice(FieldLocations.LinkName, FieldLengths.
LinkName
));