6 references to UName
System.Formats.Tar (6)
System\Formats\Tar\FieldLocations.cs (1)
26internal const ushort GName = UName + FieldLengths.UName;
System\Formats\Tar\TarHeader.Read.cs (1)
546_uName = TarHelpers.ParseUtf8String(buffer.Slice(FieldLocations.UName, FieldLengths.UName));
System\Formats\Tar\TarHeader.Write.cs (4)
742if (GetUtf8TextLength(uName) > FieldLengths.UName) 749int truncatedLength = GetUtf16TruncatedTextLength(uName, FieldLengths.UName); 753checksum += WriteAsUtf8String(uName, buffer.Slice(FieldLocations.UName, FieldLengths.UName)); 951TryAddStringField(ExtendedAttributes, PaxEaUName, _uName, FieldLengths.UName);