24 references to ThreadState
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IThread.cs (1)
51ThreadState State,
Microsoft.Diagnostics.DataContractReader.Contracts (10)
Contracts\Thread_1.cs (10)
81private static Contracts.ThreadState GetThreadState(ThreadState_1 state) 83Contracts.ThreadState result = Contracts.ThreadState.Unknown; 85result |= Contracts.ThreadState.Hijacked; 87result |= Contracts.ThreadState.Background; 89result |= Contracts.ThreadState.Unstarted; 91result |= Contracts.ThreadState.Stopped; 93result |= Contracts.ThreadState.WaitSleepJoin; 95result |= Contracts.ThreadState.ThreadPoolWorker; 97result |= Contracts.ThreadState.Detached;
Microsoft.Diagnostics.DataContractReader.Legacy (13)
ClrDataTask.cs (1)
72if (threadData.State.HasFlag(Contracts.ThreadState.Unstarted))
Dbi\DacDbiImpl.cs (12)
660if ((threadData.State & (Contracts.ThreadState.Stopped | Contracts.ThreadState.Unstarted)) == 0) 709*pResult = (threadData.State & Contracts.ThreadState.Stopped) != 0 ? Interop.BOOL.TRUE : Interop.BOOL.FALSE; 738if ((threadData.State & (Contracts.ThreadState.Stopped | Contracts.ThreadState.Unstarted | Contracts.ThreadState.Detached)) != 0) 834Contracts.ThreadState threadState = threadData.State; 837if ((threadState & Contracts.ThreadState.Background) != 0) 840if ((threadState & Contracts.ThreadState.Unstarted) != 0) 843if ((threadState & Contracts.ThreadState.Stopped) != 0) 846if ((threadState & Contracts.ThreadState.WaitSleepJoin) != 0) 849if ((threadState & Contracts.ThreadState.ThreadPoolWorker) != 0)