1 write to _rts
Microsoft.Diagnostics.DataContractReader.Legacy (1)
SOSDacImpl.IXCLRDataProcess.cs (1)
817_rts = _target.Contracts.RuntimeTypeSystem;
20 references to _rts
Microsoft.Diagnostics.DataContractReader.Legacy (20)
SOSDacImpl.IXCLRDataProcess.cs (20)
823MethodDescHandle mainMD = _rts.GetMethodDescHandle(_mainMethodDesc); 840yield return _rts.GetMethodDescHandle(methodPtr); 850yield return _rts.GetTypeHandle(type); 877MethodDescHandle mainMD = _rts.GetMethodDescHandle(_mainMethodDesc); 890TargetPointer mtAddr = _rts.GetMethodTable(mainMD); 891ITypeHandle mainMT = _rts.GetTypeHandle(mtAddr); 892TargetPointer mainModule = _rts.GetModule(mainMT); 893uint mainMTToken = _rts.GetTypeDefToken(mainMT); 894uint mainMDToken = _rts.GetMethodToken(mainMD); 895ushort slotNum = _rts.GetSlotNumber(mainMD); 905ITypeHandle methodTypeHandle = _rts.GetTypeHandle(_rts.GetMethodTable(methodDesc)); 907if (mainModule != _rts.GetModule(methodTypeHandle)) continue; 908if (mainMDToken != _rts.GetMethodToken(methodDesc)) continue; 930uint typeParamToken = _rts.GetTypeDefToken(typeParam); 939if (mainModule != _rts.GetModule(typeParam)) continue; 941TargetPointer cmt = _rts.GetCanonicalMethodTable(typeParam); 942ITypeHandle cmtHandle = _rts.GetTypeHandle(cmt); 944TargetPointer methodDescAddr = _rts.GetMethodDescForSlot(cmtHandle, slotNum); 946MethodDescHandle methodDesc = _rts.GetMethodDescHandle(methodDescAddr);