1 implementation of GetComponentSize
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
573public uint GetComponentSize(ITypeHandle typeHandle) => !typeHandle.IsMethodTable() ? (uint)0 : _methodTables[typeHandle.Address].Flags.ComponentSize;
8 references to GetComponentSize
Microsoft.Diagnostics.DataContractReader.Contracts (3)
Contracts\ConditionalWeakTable_1.cs (1)
38uint entrySize = _target.Contracts.RuntimeTypeSystem.GetComponentSize(entriesTypeHandle);
Contracts\Object_1.cs (1)
219uint componentSize = typeSystemContract.GetComponentSize(typeHandle);
Contracts\StackWalk\GC\GcScanContext.cs (1)
176uint componentSize = _rts.GetComponentSize(handle);
Microsoft.Diagnostics.DataContractReader.Legacy (5)
Dbi\DacDbiImpl.cs (2)
4381pArrayInfo->elementSize = rts.GetComponentSize(th); 5548pLayout->elementSize = rts.GetComponentSize(arrayOrStringTypeHandle);
Dbi\Helpers\HeapWalk.cs (1)
118uint componentSize = _rts.GetComponentSize(handle);
SOSDacImpl.cs (2)
2815result.componentSize = contract.GetComponentSize(methodTable); 3337data->dwComponentSize = runtimeTypeSystemContract.GetComponentSize(handle);