1 write to _rts
Microsoft.Diagnostics.DataContractReader.Legacy (1)
SOSDacImpl.IXCLRDataProcess.cs (1)
758_rts = _target.Contracts.RuntimeTypeSystem;
20 references to _rts
Microsoft.Diagnostics.DataContractReader.Legacy (20)
SOSDacImpl.IXCLRDataProcess.cs (20)
764MethodDescHandle mainMD = _rts.GetMethodDescHandle(_mainMethodDesc); 781yield return _rts.GetMethodDescHandle(methodPtr); 791yield return _rts.GetTypeHandle(type); 818MethodDescHandle mainMD = _rts.GetMethodDescHandle(_mainMethodDesc); 831TargetPointer mtAddr = _rts.GetMethodTable(mainMD); 832ITypeHandle mainMT = _rts.GetTypeHandle(mtAddr); 833TargetPointer mainModule = _rts.GetModule(mainMT); 834uint mainMTToken = _rts.GetTypeDefToken(mainMT); 835uint mainMDToken = _rts.GetMethodToken(mainMD); 836ushort slotNum = _rts.GetSlotNumber(mainMD); 846ITypeHandle methodTypeHandle = _rts.GetTypeHandle(_rts.GetMethodTable(methodDesc)); 848if (mainModule != _rts.GetModule(methodTypeHandle)) continue; 849if (mainMDToken != _rts.GetMethodToken(methodDesc)) continue; 871uint typeParamToken = _rts.GetTypeDefToken(typeParam); 880if (mainModule != _rts.GetModule(typeParam)) continue; 882TargetPointer cmt = _rts.GetCanonicalMethodTable(typeParam); 883ITypeHandle cmtHandle = _rts.GetTypeHandle(cmt); 885TargetPointer methodDescAddr = _rts.GetMethodDescForSlot(cmtHandle, slotNum); 887MethodDescHandle methodDesc = _rts.GetMethodDescHandle(methodDescAddr);