1 instantiation of ThreadData
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\Thread_1.cs (1)
157return new ThreadData(
53 references to ThreadData
Microsoft.Diagnostics.DataContractReader.Abstractions (6)
Contracts\IStackWalk.cs (5)
90IEnumerable<IStackDataFrameHandle> CreateStackWalk(ThreadData threadData) => throw new NotImplementedException(); 91IEnumerable<IStackDataFrameHandle> CreateStackWalk(ThreadData threadData, byte[] contextBuffer, bool isFirst = true) => throw new NotImplementedException(); 92IReadOnlyList<StackReferenceData> WalkStackReferences(ThreadData threadData, bool resolveInteriorPointers) => throw new NotImplementedException(); 105TargetPointer GetRedirectedContextPointer(ThreadData threadData) => throw new NotImplementedException(); 106byte[] GetContext(ThreadData threadData, ThreadContextSource contextSource, uint contextFlags) => throw new NotImplementedException();
Contracts\IThread.cs (1)
87ThreadData GetThreadData(TargetPointer thread) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (18)
Contracts\Debugger\Debugger_1.cs (1)
287ThreadData threadData = _target.Contracts.Thread.GetThreadData(vmThread);
Contracts\GC\GC_1.cs (1)
489ThreadData td = thread.GetThreadData(current);
Contracts\StackWalk\FrameHandling\FrameIterator.cs (1)
26public FrameIterator(Target target, ThreadData threadData)
Contracts\StackWalk\StackWalk_1.cs (14)
36ThreadData ThreadData, 44private class StackWalkData(IPlatformAgnosticContext context, StackWalkState state, FrameIterator frameIter, ThreadData threadData) 49public ThreadData ThreadData { get; set; } = threadData; 134IEnumerable<IStackDataFrameHandle> IStackWalk.CreateStackWalk(ThreadData threadData) 205IEnumerable<IStackDataFrameHandle> IStackWalk.CreateStackWalk(ThreadData threadData, byte[] contextBuffer, bool isFirst) 219ThreadData threadData, 263IReadOnlyList<StackReferenceData> IStackWalk.WalkStackReferences(ThreadData threadData, bool resolveInteriorPointers) 405private void ReportExceptionTrackerRoots(ThreadData threadData, GcScanContext scanContext) 432private void ReportGCFrameRoots(ThreadData threadData, GcScanContext scanContext) 1289ThreadData threadData = _target.Contracts.Thread.GetThreadData(threadPointer); 1310byte[] IStackWalk.GetContext(ThreadData threadData, ThreadContextSource contextSource, uint contextFlags) 1335private byte[] GetContextFromFrames(ThreadData threadData) 1370TargetPointer IStackWalk.GetRedirectedContextPointer(ThreadData threadData) 1393private void FillContextFromThread(IPlatformAgnosticContext context, ThreadData threadData, uint flags)
Contracts\Thread_1.cs (1)
123ThreadData IThread.GetThreadData(TargetPointer threadPointer)
Microsoft.Diagnostics.DataContractReader.Legacy (29)
ClrDataExceptionState.cs (1)
353ThreadData threadData = _target.Contracts.Thread.GetThreadData(_threadAddress);
ClrDataStackWalk.cs (1)
23private readonly ThreadData _threadData;
ClrDataTask.cs (3)
104Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(_address); 162Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(_address); 242Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(_address);
Dbi\DacDbiImpl.cs (16)
1035Contracts.ThreadData threadData = threadContract.GetThreadData(currentThread); 1086Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 1112Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 1139Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 1169Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(threadPtr); 1239Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 1274Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(threadPtr); 1309Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(threadPtr); 1390Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 1420Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 1451ThreadData data = _target.Contracts.Thread.GetThreadData(threadPtr); 1531Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 1703Contracts.ThreadData threadData = threadContract.GetThreadData(vmThread); 1797ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 2571ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 2607ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread));
Dbi\Helpers\RefWalk.cs (1)
138ThreadData threadData = threadContract.GetThreadData(threadAddr);
Dbi\Helpers\StackWalkHandleData.cs (2)
16private readonly ThreadData _threadData; 19public StackWalkHandleData(IStackWalk stackWalk, ThreadData threadData)
SOSDacImpl.cs (3)
4159ThreadData? matchingThread = null; 4165ThreadData td = threadContract.GetThreadData(threadAddr); 4427Contracts.ThreadData threadData = contract.GetThreadData(thread.ToTargetPointer(_target));
SOSDacImpl.IXCLRDataProcess.cs (2)
127Contracts.ThreadData threadData = contract.GetThreadData(thread); 1242Contracts.ThreadData threadData = thread.GetThreadData(exception.ThreadAddress);