1 instantiation of ThreadData
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\Thread_1.cs (1)
135return new ThreadData(
51 references to ThreadData
Microsoft.Diagnostics.DataContractReader.Abstractions (6)
Contracts\IStackWalk.cs (5)
93IEnumerable<IStackDataFrameHandle> CreateStackWalk(ThreadData threadData) => throw new NotImplementedException(); 94IEnumerable<IStackDataFrameHandle> CreateStackWalk(ThreadData threadData, byte[] contextBuffer, bool isFirst = true) => throw new NotImplementedException(); 95IReadOnlyList<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)
79ThreadData GetThreadData(TargetPointer thread) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (18)
Contracts\Debugger\Debugger_1.cs (1)
232ThreadData 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, 42private class StackWalkData(IPlatformAgnosticContext context, StackWalkState state, FrameIterator frameIter, ThreadData threadData) 47public ThreadData ThreadData { get; set; } = threadData; 128IEnumerable<IStackDataFrameHandle> IStackWalk.CreateStackWalk(ThreadData threadData) 193IEnumerable<IStackDataFrameHandle> IStackWalk.CreateStackWalk(ThreadData threadData, byte[] contextBuffer, bool isFirst) 207ThreadData threadData, 249IReadOnlyList<StackReferenceData> IStackWalk.WalkStackReferences(ThreadData threadData, bool resolveInteriorPointers) 391private void ReportExceptionTrackerRoots(ThreadData threadData, GcScanContext scanContext) 418private void ReportGCFrameRoots(ThreadData threadData, GcScanContext scanContext) 1134ThreadData threadData = _target.Contracts.Thread.GetThreadData(threadPointer); 1155byte[] IStackWalk.GetContext(ThreadData threadData, ThreadContextSource contextSource, uint contextFlags) 1180private byte[] GetContextFromFrames(ThreadData threadData) 1215TargetPointer IStackWalk.GetRedirectedContextPointer(ThreadData threadData) 1238private void FillContextFromThread(IPlatformAgnosticContext context, ThreadData threadData, uint flags)
Contracts\Thread_1.cs (1)
101ThreadData IThread.GetThreadData(TargetPointer threadPointer)
Microsoft.Diagnostics.DataContractReader.Legacy (27)
ClrDataStackWalk.cs (1)
32ThreadData threadData = _target.Contracts.Thread.GetThreadData(_threadAddr);
ClrDataTask.cs (3)
71Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(_address); 116Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(_address); 150Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(_address);
Dbi\DacDbiImpl.cs (15)
777Contracts.ThreadData threadData = threadContract.GetThreadData(currentThread); 827Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 852Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 878Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 907Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(threadPtr); 975Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 1005Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(threadPtr); 1083Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 1112Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 1142ThreadData data = _target.Contracts.Thread.GetThreadData(threadPtr); 1220Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 1309Contracts.ThreadData threadData = threadContract.GetThreadData(vmThread); 1402ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 1913ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 1948ThreadData 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)
4046ThreadData? matchingThread = null; 4052ThreadData td = threadContract.GetThreadData(threadAddr); 4309Contracts.ThreadData threadData = contract.GetThreadData(thread.ToTargetPointer(_target));
SOSDacImpl.IXCLRDataProcess.cs (2)
50Contracts.ThreadData threadData = contract.GetThreadData(thread); 678Contracts.ThreadData threadData = thread.GetThreadData(exception.ThreadAddress);