2 writes to _previousBlockingAdjustmentDelayMs
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.GateThread.cs (2)
293
_previousBlockingAdjustmentDelayMs
= delayMs;
296
public void ClearBlockingAdjustmentDelay() =>
_previousBlockingAdjustmentDelayMs
= 0;
5 references to _previousBlockingAdjustmentDelayMs
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.GateThread.cs (5)
297
public bool HasBlockingAdjustmentDelay =>
_previousBlockingAdjustmentDelayMs
!= 0;
306
if (
_previousBlockingAdjustmentDelayMs
== 0)
316
elapsedMsSincePreviousBlockingAdjustmentDelay <
_previousBlockingAdjustmentDelayMs
317
?
_previousBlockingAdjustmentDelayMs
- elapsedMsSincePreviousBlockingAdjustmentDelay
349
return elapsedMsSincePreviousBlockingAdjustmentDelay >=
_previousBlockingAdjustmentDelayMs
;