3 instantiations of CpioEntry
Microsoft.DotNet.Build.Tasks.Installers (3)
src\CpioEntry.cs (1)
42return new CpioEntry(Inode, name, Timestamp, OwnerID, GroupID, Mode, NumberOfLinks, DevMajor, DevMinor, RDevMajor, RDevMinor, DataStream);
src\CpioReader.cs (1)
93return new CpioEntry(
src\CpioWriter.cs (1)
49CpioEntry trailerEntry = new(0, "TRAILER!!!", 0, 0, 0, 0, 0, 0, 0, 0, 0, new MemoryStream());
15 references to CpioEntry
Microsoft.DotNet.Build.Tasks.Installers (15)
src\CpioEntry.cs (1)
40public CpioEntry WithName(string name)
src\CpioReader.cs (1)
19public CpioEntry? GetNextEntry()
src\CpioWriter.cs (2)
19public void WriteNextEntry(CpioEntry entry) 49CpioEntry trailerEntry = new(0, "TRAILER!!!", 0, 0, 0, 0, 0, 0, 0, 0, 0, new MemoryStream());
src\CreateRpmPackage.cs (3)
178for (CpioEntry entry = reader.GetNextEntry(); entry is not null; entry = reader.GetNextEntry()) 180if ((entry.Mode & CpioEntry.FileKindMask) == CpioEntry.Directory)
src\RpmBuilder.cs (8)
155private readonly List<(CpioEntry file, string fileKind, bool isGhost)> _files = []; 157public void AddFile(CpioEntry file, string fileKind) 168public void AddGhostFile(CpioEntry file, string fileKind) 379foreach ((CpioEntry file, string fileKind, bool isGhost) in _files) 391if (!isGhost && (file.Mode & CpioEntry.FileKindMask) == CpioEntry.RegularFile) 402if ((file.Mode & CpioEntry.FileKindMask) == CpioEntry.SymbolicLink)