15 references to GlobalExtendedAttributes
System.Formats.Tar (15)
System\Formats\Tar\PaxGlobalExtendedAttributesTarEntry.cs (1)
26: base(TarEntryType.GlobalExtendedAttributes, nameof(PaxGlobalExtendedAttributesTarEntry), TarEntryFormat.Pax, isGea: true) // Name == name of type for lack of a better temporary name until the entry is written
System\Formats\Tar\TarEntry.cs (4)
41Debug.Assert(!isGea || entryType is TarEntryType.GlobalExtendedAttributes); 216if (EntryType is TarEntryType.SymbolicLink or TarEntryType.HardLink or TarEntryType.GlobalExtendedAttributes) 251if (EntryType is TarEntryType.SymbolicLink or TarEntryType.HardLink or TarEntryType.GlobalExtendedAttributes) 521case TarEntryType.GlobalExtendedAttributes:
System\Formats\Tar\TarFile.cs (2)
662if (entry.EntryType is not TarEntryType.GlobalExtendedAttributes) 710if (entry.EntryType is not TarEntryType.GlobalExtendedAttributes)
System\Formats\Tar\TarHeader.Read.cs (2)
226case TarEntryType.ExtendedAttributes or TarEntryType.GlobalExtendedAttributes: 385TarEntryType.GlobalExtendedAttributes => TarEntryFormat.Pax,
System\Formats\Tar\TarHeader.Write.cs (3)
140Debug.Assert(_typeFlag is TarEntryType.GlobalExtendedAttributes); 178Debug.Assert(_typeFlag is not TarEntryType.GlobalExtendedAttributes); 332_typeFlag = isGea ? TarEntryType.GlobalExtendedAttributes : TarEntryType.ExtendedAttributes;
System\Formats\Tar\TarReader.cs (2)
218TarEntryFormat.Pax => header._typeFlag is TarEntryType.GlobalExtendedAttributes ? 295if (actualHeader._typeFlag is TarEntryType.GlobalExtendedAttributes or
System\Formats\Tar\TarWriter.cs (1)
318TarEntryFormat.Pax when entry._header._typeFlag is TarEntryType.GlobalExtendedAttributes => entry._header.WriteAsPaxGlobalExtendedAttributesCoreAsync<TAdapter>(_archiveStream, buffer, _nextGlobalExtendedAttributesEntryNumber++, cancellationToken),