14 references to CpioEntry
Microsoft.DotNet.Build.Tasks.Installers (14)
src\CpioEntry.cs (1)
38
public
CpioEntry
WithName(string name)
src\CpioReader.cs (1)
19
public
CpioEntry
? GetNextEntry()
src\CpioWriter.cs (2)
19
public void WriteNextEntry(
CpioEntry
entry)
49
CpioEntry
trailerEntry = new(0, "TRAILER!!!", 0, 0, 0, 0, 0, 0, 0, 0, 0, new MemoryStream());
src\CreateRpmPackage.cs (3)
122
for (
CpioEntry
entry = reader.GetNextEntry(); entry is not null; entry = reader.GetNextEntry())
124
if ((entry.Mode &
CpioEntry
.FileKindMask) ==
CpioEntry
.Directory)
src\RpmBuilder.cs (7)
142
private readonly List<(
CpioEntry
file, string fileKind)> _files = [];
144
public void AddFile(
CpioEntry
file, string fileKind)
235
foreach ((
CpioEntry
file, string fileKind) in _files)
241
if ((file.Mode &
CpioEntry
.FileKindMask) ==
CpioEntry
.RegularFile)
252
if ((file.Mode &
CpioEntry
.FileKindMask) ==
CpioEntry
.SymbolicLink)