18 references to GlobalExtendedAttributes
aspire (1)
Agents\AspireSkills\AspireSkillsBundleProvider.cs (1)
514
case TarEntryType.
GlobalExtendedAttributes
:
System.Formats.Tar (17)
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
)
621
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)
302
case TarEntryType.ExtendedAttributes or TarEntryType.
GlobalExtendedAttributes
:
466
TarEntryType.
GlobalExtendedAttributes
=> TarEntryFormat.Pax,
System\Formats\Tar\TarHeader.Write.cs (4)
199
Debug.Assert(_typeFlag is TarEntryType.
GlobalExtendedAttributes
);
264
Debug.Assert(_typeFlag is not TarEntryType.
GlobalExtendedAttributes
);
296
Debug.Assert(_typeFlag is not TarEntryType.
GlobalExtendedAttributes
);
487
_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 (2)
318
if (entry._header._typeFlag is TarEntryType.
GlobalExtendedAttributes
)
353
TarEntryFormat.Pax when entry._header._typeFlag is TarEntryType.
GlobalExtendedAttributes
=> entry._header.WriteAsPaxGlobalExtendedAttributesCoreAsync<TAdapter>(_archiveStream, buffer, _nextGlobalExtendedAttributesEntryNumber++, cancellationToken),