2 instantiations of SimpleBlob
Microsoft.NET.HostModel (2)
MachO\BinaryFormat\Blobs\CmsWrapperBlob.cs (1)
26public static CmsWrapperBlob Empty { get; } = new CmsWrapperBlob(new SimpleBlob(BlobMagic.CmsWrapper, []));
MachO\BinaryFormat\Blobs\SimpleBlob.cs (1)
66return new SimpleBlob(blobMagic, data);
9 references to SimpleBlob
Microsoft.NET.HostModel (9)
MachO\BinaryFormat\Blobs\BlobParser.cs (4)
25BlobMagic.CodeDirectory => new CodeDirectoryBlob(SimpleBlob.Read(reader, offset)), 27BlobMagic.CmsWrapper => new CmsWrapperBlob(SimpleBlob.Read(reader, offset)), 32static SimpleBlob CreateUnknownBlob(BlobMagic magic, IMachOFileReader reader, long offset) 35return SimpleBlob.Read(reader, offset);
MachO\BinaryFormat\Blobs\CmsWrapperBlob.cs (2)
15private SimpleBlob _inner; 17public CmsWrapperBlob(SimpleBlob blob)
MachO\BinaryFormat\Blobs\CodeDirectoryBlob.cs (1)
29public CodeDirectoryBlob(SimpleBlob blob)
MachO\BinaryFormat\Blobs\SimpleBlob.cs (2)
19protected SimpleBlob(SimpleBlob blob) 56public static SimpleBlob Read(IMachOFileReader reader, long offset)