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)
41
Debug.Assert(!isGea || entryType is TarEntryType.
GlobalExtendedAttributes
);
216
if (EntryType is TarEntryType.SymbolicLink or TarEntryType.HardLink or TarEntryType.
GlobalExtendedAttributes
)
251
if (EntryType is TarEntryType.SymbolicLink or TarEntryType.HardLink or TarEntryType.
GlobalExtendedAttributes
)
521
case TarEntryType.
GlobalExtendedAttributes
:
System\Formats\Tar\TarFile.cs (2)
662
if (entry.EntryType is not TarEntryType.
GlobalExtendedAttributes
)
710
if (entry.EntryType is not TarEntryType.
GlobalExtendedAttributes
)
System\Formats\Tar\TarHeader.Read.cs (2)
226
case TarEntryType.ExtendedAttributes or TarEntryType.
GlobalExtendedAttributes
:
385
TarEntryType.
GlobalExtendedAttributes
=> TarEntryFormat.Pax,
System\Formats\Tar\TarHeader.Write.cs (3)
140
Debug.Assert(_typeFlag is TarEntryType.
GlobalExtendedAttributes
);
178
Debug.Assert(_typeFlag is not TarEntryType.
GlobalExtendedAttributes
);
332
_typeFlag = isGea ? TarEntryType.
GlobalExtendedAttributes
: TarEntryType.ExtendedAttributes;
System\Formats\Tar\TarReader.cs (2)
218
TarEntryFormat.Pax => header._typeFlag is TarEntryType.
GlobalExtendedAttributes
?
295
if (actualHeader._typeFlag is TarEntryType.
GlobalExtendedAttributes
or
System\Formats\Tar\TarWriter.cs (1)
318
TarEntryFormat.Pax when entry._header._typeFlag is TarEntryType.
GlobalExtendedAttributes
=> entry._header.WriteAsPaxGlobalExtendedAttributesCoreAsync<TAdapter>(_archiveStream, buffer, _nextGlobalExtendedAttributesEntryNumber++, cancellationToken),