20 references to GlobalExtendedAttributes
System.Formats.Tar (20)
System\Formats\Tar\PaxGlobalExtendedAttributesTarEntry.cs (1)
28
: 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
);
203
if (EntryType is TarEntryType.SymbolicLink or TarEntryType.HardLink or TarEntryType.
GlobalExtendedAttributes
)
237
if (EntryType is TarEntryType.SymbolicLink or TarEntryType.HardLink or TarEntryType.
GlobalExtendedAttributes
)
487
case TarEntryType.
GlobalExtendedAttributes
:
System\Formats\Tar\TarFile.cs (2)
465
if (entry.EntryType is not TarEntryType.
GlobalExtendedAttributes
)
510
if (entry.EntryType is not TarEntryType.
GlobalExtendedAttributes
)
System\Formats\Tar\TarHeader.Read.cs (3)
189
case TarEntryType.ExtendedAttributes or TarEntryType.
GlobalExtendedAttributes
:
251
case TarEntryType.ExtendedAttributes or TarEntryType.
GlobalExtendedAttributes
:
404
TarEntryType.
GlobalExtendedAttributes
=> TarEntryFormat.Pax,
System\Formats\Tar\TarHeader.Write.cs (4)
213
Debug.Assert(_typeFlag is TarEntryType.
GlobalExtendedAttributes
);
276
Debug.Assert(_typeFlag is not TarEntryType.
GlobalExtendedAttributes
);
319
Debug.Assert(_typeFlag is not TarEntryType.
GlobalExtendedAttributes
);
486
_typeFlag = isGea ? TarEntryType.
GlobalExtendedAttributes
: TarEntryType.ExtendedAttributes;
System\Formats\Tar\TarReader.cs (4)
138
TarEntryFormat.Pax => header._typeFlag is TarEntryType.
GlobalExtendedAttributes
?
291
TarEntryFormat.Pax => header._typeFlag is TarEntryType.
GlobalExtendedAttributes
?
409
if (actualHeader._typeFlag is TarEntryType.
GlobalExtendedAttributes
or
441
if (actualHeader._typeFlag is TarEntryType.
GlobalExtendedAttributes
or
System\Formats\Tar\TarWriter.cs (2)
295
if (entry._header._typeFlag is TarEntryType.
GlobalExtendedAttributes
)
330
TarEntryFormat.Pax when entry._header._typeFlag is TarEntryType.
GlobalExtendedAttributes
=> entry._header.WriteAsPaxGlobalExtendedAttributesAsync(_archiveStream, buffer, _nextGlobalExtendedAttributesEntryNumber++, cancellationToken),