1 instantiation of StressLogData
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\StressLog.cs (1)
41return new StressLogData(
19 references to StressLogData
Microsoft.Diagnostics.DataContractReader.Abstractions (4)
Contracts\IStressLog.cs (4)
39StressLogData GetStressLogData() => throw new NotImplementedException(); 40StressLogData GetStressLogData(TargetPointer stressLog) => throw new NotImplementedException(); 43bool IsPointerInStressLog(StressLogData stressLog, TargetPointer pointer) => throw new NotImplementedException(); 44IEnumerable<StressLogMemoryRange> GetStressLogMemoryRanges(StressLogData stressLog) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (12)
Contracts\StressLog.cs (12)
28public StressLogData GetStressLogData() 38public StressLogData GetStressLogData(TargetPointer stressLogPointer) 216public bool IsPointerInStressLog(StressLogData stressLog, TargetPointer pointer) 231public IEnumerable<StressLogMemoryRange> GetStressLogMemoryRanges(StressLogData stressLog) 348public StressLogData GetStressLogData() => traversal.GetStressLogData(); 349public StressLogData GetStressLogData(TargetPointer stressLog) => traversal.GetStressLogData(stressLog); 352public bool IsPointerInStressLog(StressLogData stressLog, TargetPointer pointer) => traversal.IsPointerInStressLog(stressLog, pointer); 353public IEnumerable<StressLogMemoryRange> GetStressLogMemoryRanges(StressLogData stressLog) => traversal.GetStressLogMemoryRanges(stressLog); 362public StressLogData GetStressLogData() => traversal.GetStressLogData(); 363public StressLogData GetStressLogData(TargetPointer stressLog) => traversal.GetStressLogData(stressLog); 366public bool IsPointerInStressLog(StressLogData stressLog, TargetPointer pointer) => traversal.IsPointerInStressLog(stressLog, pointer); 367public IEnumerable<StressLogMemoryRange> GetStressLogMemoryRanges(StressLogData stressLog) => traversal.GetStressLogMemoryRanges(stressLog);
Microsoft.Diagnostics.DataContractReader.Legacy (3)
SOSDacImpl.cs (3)
7273Contracts.StressLogData logData = stressLogContract.GetStressLogData(); 7300Contracts.StressLogData logData = stressLogContract.GetStressLogData(); 7351Contracts.StressLogData logData = stressLogContract.GetStressLogData();