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;
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)
211uint componentSize = typeSystemContract.GetComponentSize(typeHandle);
Contracts\StackWalk\GC\GcScanContext.cs (1)
176uint componentSize = _rts.GetComponentSize(handle);
Microsoft.Diagnostics.DataContractReader.Legacy (5)
Dbi\DacDbiImpl.cs (2)
3637pArrayInfo->elementSize = rts.GetComponentSize(th); 4785pLayout->elementSize = rts.GetComponentSize(arrayOrStringTypeHandle);
Dbi\Helpers\HeapWalk.cs (1)
118uint componentSize = _rts.GetComponentSize(handle);
SOSDacImpl.cs (2)
2809result.componentSize = contract.GetComponentSize(methodTable); 3331data->dwComponentSize = runtimeTypeSystemContract.GetComponentSize(handle);