3 writes to Blobs
Microsoft.NET.HostModel (3)
MachO\BinaryFormat\Blobs\SuperBlob.cs (3)
28Blobs = blobs.ToImmutableArray(); 36Blobs = ImmutableArray<IBlob>.Empty; 43Blobs = other.Blobs;
10 references to Blobs
Microsoft.NET.HostModel (10)
MachO\BinaryFormat\Blobs\EmbeddedSignatureBlob.cs (1)
155foreach (var b in _inner.Blobs)
MachO\BinaryFormat\Blobs\SuperBlob.cs (9)
30ValidateBlobs(Blobs, BlobIndices); 43Blobs = other.Blobs; 55+ Blobs.Sum(b => b.Size)); 57public uint SubBlobCount => (uint)Blobs.Length; 95uint count = (uint)Blobs.Length; 99for (int i = 0; i < Blobs.Length; i++) 106long currentOffset = offset + sizeof(uint) * 3 + (Blobs.Length * BlobIndex.Size); 107for (int i = 0; i < Blobs.Length; i++) 109currentOffset += Blobs[i].Write(file, currentOffset);