85 references to TimerThread
System (85)
net\System\Net\_AutoWebProxyScriptWrapper.cs (9)
609
TimerThread
.GetOrCreateQueue(0).CreateTimer(new
TimerThread
.Callback(CloseAppDomainCallback), excessAppDomain);
650
TimerThread
.GetOrCreateQueue(0).CreateTimer(new
TimerThread
.Callback(CloseAppDomainCallback), s_ExcessAppDomain);
670
TimerThread
.GetOrCreateQueue(0).CreateTimer(new
TimerThread
.Callback(CloseAppDomainCallback), appDomainIndex);
688
TimerThread
.GetOrCreateQueue(0).CreateTimer(new
TimerThread
.Callback(CloseAppDomainCallback), appDomainIndex);
693
private static void CloseAppDomainCallback(
TimerThread
.Timer timer, int timeNoticed, object context)
net\System\Net\_Connection.cs (1)
294
private
TimerThread
.Timer m_RecycleTimer;
net\System\Net\_ConnectionGroup.cs (2)
34
private
TimerThread
.Timer m_ExpiringTimer;
194
TimerThread
.Timer timer = m_ExpiringTimer;
net\System\Net\_TimerThread.cs (1)
328
TimerThread
.Prod();
net\System\Net\connectionpool.cs (12)
34
private static
TimerThread
.Callback s_CleanupCallback = new
TimerThread
.Callback(CleanupCallbackWrapper);
35
private static
TimerThread
.Callback s_CancelErrorCallback = new
TimerThread
.Callback(CancelErrorCallbackWrapper);
36
private static
TimerThread
.Queue s_CancelErrorQueue =
TimerThread
.GetOrCreateQueue(ErrorWait);
52
private readonly
TimerThread
.Queue m_CleanupQueue;
64
private
TimerThread
.Timer m_ErrorTimer;
111
m_CleanupQueue =
TimerThread
.GetOrCreateQueue(idleTimeout == 1 ? 1 : (idleTimeout / 2));
256
private static void CleanupCallbackWrapper(
TimerThread
.Timer timer, int timeNoticed, object context)
446
private static void CancelErrorCallbackWrapper(
TimerThread
.Timer timer, int timeNoticed, object context)
456
TimerThread
.Timer timer = m_ErrorTimer;
net\System\Net\FtpWebRequest.cs (9)
221
private
TimerThread
.Queue m_TimerQueue = s_DefaultTimerQueue;
222
private
TimerThread
.Callback m_TimerCallback;
244
private static readonly
TimerThread
.Queue s_DefaultTimerQueue =
TimerThread
.GetOrCreateQueue(s_DefaultTimeout);
524
m_TimerCallback = new
TimerThread
.Callback(TimerCallback);
1185
TimerThread
.Timer timer = TimerQueue.CreateTimer(m_TimerCallback, null);
1223
private void TimerCallback(
TimerThread
.Timer timer, int timeNoticed, object context) {
1232
private
TimerThread
.Queue TimerQueue {
1235
m_TimerQueue =
TimerThread
.GetOrCreateQueue(RemainingTimeout);
net\System\Net\HttpWebRequest.cs (20)
129
private static readonly
TimerThread
.Callback s_ContinueTimeoutCallback = new
TimerThread
.Callback(ContinueTimeoutCallback);
130
private static readonly
TimerThread
.Queue s_ContinueTimerQueue =
TimerThread
.GetOrCreateQueue(DefaultContinueTimeout);
131
private static readonly
TimerThread
.Callback s_TimeoutCallback = new
TimerThread
.Callback(TimeoutCallback);
139
private
TimerThread
.Timer m_ContinueTimer;
143
private
TimerThread
.Queue m_ContinueTimerQueue;
253
private
TimerThread
.Timer _Timer;
258
private
TimerThread
.Queue _TimerQueue;
321
internal
TimerThread
.Timer RequestTimer
1035
private
TimerThread
.Queue TimerQueue
1039
TimerThread
.Queue queue = _TimerQueue;
1042
queue =
TimerThread
.GetOrCreateQueue(_Timeout == 0 ? 1 : _Timeout);
1095
private
TimerThread
.Queue ContinueTimerQueue {
1098
m_ContinueTimerQueue =
TimerThread
.GetOrCreateQueue(m_ContinueTimeout == 0 ? 1 : m_ContinueTimeout);
3244
TimerThread
.Timer timer = _Timer;
3253
private static void TimeoutCallback(
TimerThread
.Timer timer, int timeNoticed, object context)
4459
private static void ContinueTimeoutCallback(
TimerThread
.Timer timer, int timeNoticed, object context)
4527
TimerThread
.Timer timer = m_ContinueTimer;
net\System\Net\NetWebProxyFinder.cs (6)
24
private static
TimerThread
.Queue timerQueue;
25
private static readonly
TimerThread
.Callback timerCallback = new
TimerThread
.Callback(RequestTimeoutCallback);
220
TimerThread
.Timer timer = null;
278
timerQueue =
TimerThread
.GetOrCreateQueue(SettingsSectionInternal.Section.DownloadTimeout);
540
private static void RequestTimeoutCallback(
TimerThread
.Timer timer, int timeNoticed, object context)
net\System\Net\ServicePoint.cs (15)
37
private
TimerThread
.Queue m_ConnectionLeaseTimerQueue;
52
private
TimerThread
.Queue m_IdlingQueue;
53
private
TimerThread
.Timer m_ExpiringTimer;
63
private readonly
TimerThread
.Callback m_IdleConnectionGroupTimeoutDelegate;
107
internal ServicePoint(Uri address,
TimerThread
.Queue defaultIdlingQueue, int defaultConnectionLimit, string lookupString, bool userChangedLimit, bool proxyServicePoint) {
138
m_IdleConnectionGroupTimeoutDelegate = new
TimerThread
.Callback(IdleConnectionGroupTimeoutCallback);
143
internal ServicePoint(string host, int port,
TimerThread
.Queue defaultIdlingQueue, int defaultConnectionLimit, string lookupString, bool userChangedLimit, bool proxyServicePoint) {
164
m_IdleConnectionGroupTimeoutDelegate = new
TimerThread
.Callback(IdleConnectionGroupTimeoutCallback);
441
internal
TimerThread
.Queue ConnectionLeaseTimerQueue {
443
TimerThread
.Queue queue = m_ConnectionLeaseTimerQueue;
445
queue =
TimerThread
.GetOrCreateQueue(ConnectionLeaseTimeout);
520
m_IdlingQueue =
TimerThread
.GetOrCreateQueue(value);
527
m_ExpiringTimer =
TimerThread
.CreateQueue(timeLeft).CreateTimer(ServicePointManager.IdleServicePointTimeoutDelegate, this);
1113
private void IdleConnectionGroupTimeoutCallback(
TimerThread
.Timer timer, int timeNoticed, object context) {
1122
internal
TimerThread
.Timer CreateConnectionGroupTimer(ConnectionGroup connectionGroup) {
net\System\Net\ServicePointManager.cs (7)
52
internal static readonly
TimerThread
.Callback s_IdleServicePointTimeoutDelegate = new
TimerThread
.Callback(IdleServicePointTimeoutCallback);
67
private static volatile
TimerThread
.Queue s_ServicePointIdlingQueue =
TimerThread
.GetOrCreateQueue(100 * 1000);
222
internal static
TimerThread
.Callback IdleServicePointTimeoutDelegate
230
private static void IdleServicePointTimeoutCallback(
TimerThread
.Timer timer, int timeNoticed, object context)
443
s_ServicePointIdlingQueue =
TimerThread
.GetOrCreateQueue(value);
net\System\Net\WebRequest.cs (3)
50
private static
TimerThread
.Queue s_DefaultTimerQueue =
TimerThread
.CreateQueue(DefaultTimeout);
90
internal static
TimerThread
.Queue DefaultTimerQueue {