1 write to _rts
Microsoft.Diagnostics.DataContractReader.Legacy (1)
SOSDacImpl.IXCLRDataProcess.cs (1)
275_rts = _target.Contracts.RuntimeTypeSystem;
20 references to _rts
Microsoft.Diagnostics.DataContractReader.Legacy (20)
SOSDacImpl.IXCLRDataProcess.cs (20)
281MethodDescHandle mainMD = _rts.GetMethodDescHandle(_mainMethodDesc); 298yield return _rts.GetMethodDescHandle(methodPtr); 308yield return _rts.GetTypeHandle(type); 335MethodDescHandle mainMD = _rts.GetMethodDescHandle(_mainMethodDesc); 348TargetPointer mtAddr = _rts.GetMethodTable(mainMD); 349TypeHandle mainMT = _rts.GetTypeHandle(mtAddr); 350TargetPointer mainModule = _rts.GetModule(mainMT); 351uint mainMTToken = _rts.GetTypeDefToken(mainMT); 352uint mainMDToken = _rts.GetMethodToken(mainMD); 353ushort slotNum = _rts.GetSlotNumber(mainMD); 363TypeHandle methodTypeHandle = _rts.GetTypeHandle(_rts.GetMethodTable(methodDesc)); 365if (mainModule != _rts.GetModule(methodTypeHandle)) continue; 366if (mainMDToken != _rts.GetMethodToken(methodDesc)) continue; 388uint typeParamToken = _rts.GetTypeDefToken(typeParam); 397if (mainModule != _rts.GetModule(typeParam)) continue; 399TargetPointer cmt = _rts.GetCanonicalMethodTable(typeParam); 400TypeHandle cmtHandle = _rts.GetTypeHandle(cmt); 402TargetPointer methodDescAddr = _rts.GetMethodDescForSlot(cmtHandle, slotNum); 404MethodDescHandle methodDesc = _rts.GetMethodDescHandle(methodDescAddr);