6 references to Idle
System.Net.Requests (6)
System\Net\TimerThread.cs (6)
88
private static int s_threadState = (int)TimerThreadState.
Idle
; // Really a TimerThreadState, but need an int for Interlocked.
467
(int)TimerThreadState.
Idle
);
469
if (oldState == TimerThreadState.
Idle
)
570
Interlocked.CompareExchange(ref s_threadState, (int)TimerThreadState.
Idle
, (int)TimerThreadState.Running);
574
if (Interlocked.CompareExchange(ref s_threadState, (int)TimerThreadState.Running, (int)TimerThreadState.
Idle
) ==
575
(int)TimerThreadState.
Idle
)