1 instantiation of ThreadData
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\Thread_1.cs (1)
135return new ThreadData(
30 references to ThreadData
Microsoft.Diagnostics.DataContractReader.Abstractions (3)
Contracts\IStackWalk.cs (2)
49public virtual IEnumerable<IStackDataFrameHandle> CreateStackWalk(ThreadData threadData) => throw new NotImplementedException(); 50IReadOnlyList<StackReferenceData> WalkStackReferences(ThreadData threadData) => throw new NotImplementedException();
Contracts\IThread.cs (1)
72ThreadData GetThreadData(TargetPointer thread) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (9)
Contracts\StackWalk\FrameHandling\FrameIterator.cs (1)
26public FrameIterator(Target target, ThreadData threadData)
Contracts\StackWalk\StackWalk_1.cs (7)
50ThreadData ThreadData, 55private class StackWalkData(IPlatformAgnosticContext context, StackWalkState state, FrameIterator frameIter, ThreadData threadData) 60public ThreadData ThreadData { get; set; } = threadData; 140IEnumerable<IStackDataFrameHandle> IStackWalk.CreateStackWalk(ThreadData threadData) 188IReadOnlyList<StackReferenceData> IStackWalk.WalkStackReferences(ThreadData threadData) 899ThreadData threadData = _target.Contracts.Thread.GetThreadData(threadPointer); 932private void FillContextFromThread(IPlatformAgnosticContext context, ThreadData threadData, uint flags)
Contracts\Thread_1.cs (1)
101ThreadData IThread.GetThreadData(TargetPointer threadPointer)
Microsoft.Diagnostics.DataContractReader.Legacy (18)
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 (9)
658Contracts.ThreadData threadData = threadContract.GetThreadData(currentThread); 708Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 737Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 803Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 833Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(threadPtr); 911Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 940Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread)); 970ThreadData data = _target.Contracts.Thread.GetThreadData(threadPtr); 1048Contracts.ThreadData threadData = _target.Contracts.Thread.GetThreadData(new TargetPointer(vmThread));
SOSDacImpl.cs (3)
4052ThreadData? matchingThread = null; 4058ThreadData td = threadContract.GetThreadData(threadAddr); 4312Contracts.ThreadData threadData = contract.GetThreadData(thread.ToTargetPointer(_target));
SOSDacImpl.IXCLRDataProcess.cs (2)
50Contracts.ThreadData threadData = contract.GetThreadData(thread); 680Contracts.ThreadData threadData = thread.GetThreadData(exception.ThreadAddress);