1 implementation of GetFieldDescOffset
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
2217uint IRuntimeTypeSystem.GetFieldDescOffset(TargetPointer fieldDescPointer, FieldDefinition? fieldDef)
7 references to GetFieldDescOffset
Microsoft.Diagnostics.DataContractReader.Contracts (3)
Contracts\CallingConvention\CallingConvention_1.cs (1)
872fieldOffset = rts.GetFieldDescOffset(fdPtr, fieldDef: null);
Contracts\ManagedTypeSource_1.cs (1)
233uint fdOffset = rts.GetFieldDescOffset(fieldDescAddr, fieldDef);
Contracts\RuntimeTypeSystem_1.cs (1)
2353uint offset = ((IRuntimeTypeSystem)this).GetFieldDescOffset(fieldDescPointer, fieldDef);
Microsoft.Diagnostics.DataContractReader.Legacy (4)
Dbi\DacDbiImpl.cs (3)
2471uint offset = rts.GetFieldDescOffset(fdPtr, null); 2479uint offset = rts.GetFieldDescOffset(fdPtr, null); 4609corField->offset = rts.GetFieldDescOffset(fieldDescPtr, fieldDef) + firstFieldOffset;
SOSDacImpl.cs (1)
1145data->dwOffset = rtsContract.GetFieldDescOffset(fieldDescTargetPtr, fieldDef);