8 writes to _uName
System.Formats.Tar (8)
System\Formats\Tar\PosixTarEntry.cs (4)
25_header._uName = string.Empty; 39_header._uName = other._header._uName; 44_header._uName ??= string.Empty; 126_header._uName = value;
System\Formats\Tar\TarHeader.Read.cs (2)
158_uName = paxEaUName; 522_uName = TarHelpers.GetTrimmedUtf8String(buffer.Slice(FieldLocations.UName, FieldLengths.UName));
System\Formats\Tar\TarHeader.Write.cs (1)
475_uName = RootUNameGName,
System\Formats\Tar\TarWriter.Unix.cs (1)
82entry._header._uName = uName;
6 references to _uName
System.Formats.Tar (6)
System\Formats\Tar\PosixTarEntry.cs (3)
37Debug.Assert(other._header._uName != null); 39_header._uName = other._header._uName; 122get => _header._uName ?? string.Empty;
System\Formats\Tar\TarHeader.Write.cs (3)
737if (!string.IsNullOrEmpty(_uName)) 739ReadOnlySpan<char> uName = _uName; 961TryAddStringField(ExtendedAttributes, PaxEaUName, _uName, FieldLengths.UName);