1 write to _rts
Microsoft.Diagnostics.DataContractReader.Legacy (1)
SOSDacImpl.IXCLRDataProcess.cs (1)
831_rts = _target.Contracts.RuntimeTypeSystem;
20 references to _rts
Microsoft.Diagnostics.DataContractReader.Legacy (20)
SOSDacImpl.IXCLRDataProcess.cs (20)
837MethodDescHandle mainMD = _rts.GetMethodDescHandle(_mainMethodDesc); 854yield return _rts.GetMethodDescHandle(methodPtr); 864yield return _rts.GetTypeHandle(type); 891MethodDescHandle mainMD = _rts.GetMethodDescHandle(_mainMethodDesc); 904TargetPointer mtAddr = _rts.GetMethodTable(mainMD); 905ITypeHandle mainMT = _rts.GetTypeHandle(mtAddr); 906TargetPointer mainModule = _rts.GetModule(mainMT); 907uint mainMTToken = _rts.GetTypeDefToken(mainMT); 908uint mainMDToken = _rts.GetMethodToken(mainMD); 909ushort slotNum = _rts.GetSlotNumber(mainMD); 919ITypeHandle methodTypeHandle = _rts.GetTypeHandle(_rts.GetMethodTable(methodDesc)); 921if (mainModule != _rts.GetModule(methodTypeHandle)) continue; 922if (mainMDToken != _rts.GetMethodToken(methodDesc)) continue; 944uint typeParamToken = _rts.GetTypeDefToken(typeParam); 953if (mainModule != _rts.GetModule(typeParam)) continue; 955TargetPointer cmt = _rts.GetCanonicalMethodTable(typeParam); 956ITypeHandle cmtHandle = _rts.GetTypeHandle(cmt); 958TargetPointer methodDescAddr = _rts.GetMethodDescForSlot(cmtHandle, slotNum); 960MethodDescHandle methodDesc = _rts.GetMethodDescHandle(methodDescAddr);