2 instantiations of DynamicILBlobEntry
Microsoft.Diagnostics.DataContractReader.Contracts (2)
Contracts\Loader_1.cs (1)
654public DynamicILBlobEntry Null() => new DynamicILBlobEntry(0, TargetPointer.Null);
Data\DynamicILBlobEntry.cs (1)
9=> new DynamicILBlobEntry(target, address);
9 references to DynamicILBlobEntry
Microsoft.Diagnostics.DataContractReader.Contracts (9)
Contracts\Loader_1.cs (6)
648private sealed class DynamicILBlobTraits : ITraits<uint, DynamicILBlobEntry> 650public uint GetKey(DynamicILBlobEntry entry) => entry.EntryMethodToken; 653public bool IsNull(DynamicILBlobEntry entry) => entry.EntryMethodToken == 0; 654public DynamicILBlobEntry Null() => new DynamicILBlobEntry(0, TargetPointer.Null); 655public bool IsDeleted(DynamicILBlobEntry entry) => false; 669public ISHash<uint, DynamicILBlobEntry> HashTable { get; init; }
Data\DynamicILBlobEntry.cs (3)
6internal sealed class DynamicILBlobEntry : IData<DynamicILBlobEntry> 8static DynamicILBlobEntry IData<DynamicILBlobEntry>.Create(Target target, TargetPointer address)