1 implementation of GetComponentSize
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
553public uint GetComponentSize(TypeHandle typeHandle) => !typeHandle.IsMethodTable() ? (uint)0 : _methodTables[typeHandle.Address].Flags.ComponentSize;
5 references to GetComponentSize
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\ConditionalWeakTable_1.cs (1)
38uint entrySize = _target.Contracts.RuntimeTypeSystem.GetComponentSize(entriesTypeHandle);
Microsoft.Diagnostics.DataContractReader.Legacy (4)
Dbi\DacDbiImpl.cs (1)
3852pLayout->elementSize = rts.GetComponentSize(arrayOrStringTypeHandle);
Dbi\Helpers\HeapWalk.cs (1)
129uint componentSize = _rts.GetComponentSize(handle);
SOSDacImpl.cs (2)
2825result.componentSize = contract.GetComponentSize(methodTable); 3345data->dwComponentSize = runtimeTypeSystemContract.GetComponentSize(handle);