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