1 write to _rts
Microsoft.Diagnostics.DataContractReader.Legacy (1)
SOSDacImpl.IXCLRDataProcess.cs (1)
274_rts = _target.Contracts.RuntimeTypeSystem;
20 references to _rts
Microsoft.Diagnostics.DataContractReader.Legacy (20)
SOSDacImpl.IXCLRDataProcess.cs (20)
280MethodDescHandle mainMD = _rts.GetMethodDescHandle(_mainMethodDesc); 297yield return _rts.GetMethodDescHandle(methodPtr); 307yield return _rts.GetTypeHandle(type); 334MethodDescHandle mainMD = _rts.GetMethodDescHandle(_mainMethodDesc); 347TargetPointer mtAddr = _rts.GetMethodTable(mainMD); 348TypeHandle mainMT = _rts.GetTypeHandle(mtAddr); 349TargetPointer mainModule = _rts.GetModule(mainMT); 350uint mainMTToken = _rts.GetTypeDefToken(mainMT); 351uint mainMDToken = _rts.GetMethodToken(mainMD); 352ushort slotNum = _rts.GetSlotNumber(mainMD); 362TypeHandle methodTypeHandle = _rts.GetTypeHandle(_rts.GetMethodTable(methodDesc)); 364if (mainModule != _rts.GetModule(methodTypeHandle)) continue; 365if (mainMDToken != _rts.GetMethodToken(methodDesc)) continue; 387uint typeParamToken = _rts.GetTypeDefToken(typeParam); 396if (mainModule != _rts.GetModule(typeParam)) continue; 398TargetPointer cmt = _rts.GetCanonicalMethodTable(typeParam); 399TypeHandle cmtHandle = _rts.GetTypeHandle(cmt); 401TargetPointer methodDescAddr = _rts.GetMethodDescForSlot(cmtHandle, slotNum); 403MethodDescHandle methodDesc = _rts.GetMethodDescHandle(methodDescAddr);