1 implementation of GetFieldDescList
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
920
public IEnumerable<TargetPointer>
GetFieldDescList
(ITypeHandle typeHandle)
7 references to GetFieldDescList
Microsoft.Diagnostics.DataContractReader.Contracts (3)
Contracts\CallingConvention\CallingConvention_1.cs (1)
652
fieldDescs = rts.
GetFieldDescList
(layoutType);
Contracts\CallingConvention\CdacTypeHandle.cs (1)
206
foreach (TargetPointer fieldDesc in Rts.
GetFieldDescList
(ExactTypeHandle))
Contracts\RuntimeTypeSystem_1.cs (1)
705
foreach (TargetPointer fd in ((IRuntimeTypeSystem)this).
GetFieldDescList
(current))
Microsoft.Diagnostics.DataContractReader.Legacy (4)
ClrDataValue.cs (1)
929
foreach (TargetPointer fieldDesc in rts.
GetFieldDescList
(types[i]))
Dbi\DacDbiImpl.cs (2)
3243
foreach (TargetPointer fdPtr in rts.
GetFieldDescList
(thApprox))
5499
TargetPointer[] fieldDescList = rts.
GetFieldDescList
(typeHandle).Take((int)cFields).ToArray();
SOSDacImpl.cs (1)
2963
data->FirstField = rtsContract.
GetFieldDescList
(typeHandle).FirstOrDefault().ToClrDataAddress(_target);