1 write to _threadCallbackList
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
6505
_threadCallbackList
??= new Queue<ThreadMethodEntry>();
21 references to _threadCallbackList
System.Windows.Forms (21)
System\Windows\Forms\Control.cs (21)
3577
if (IsDisposed &&
_threadCallbackList
is not null &&
_threadCallbackList
.Count > 0)
3579
lock (
_threadCallbackList
)
3582
while (
_threadCallbackList
.Count > 0)
3584
ThreadMethodEntry entry =
_threadCallbackList
.Dequeue();
4696
if (RecreatingHandle &&
_threadCallbackList
is not null)
4700
lock (
_threadCallbackList
)
4725
if (!RecreatingHandle &&
_threadCallbackList
is not null)
4727
lock (
_threadCallbackList
)
4731
while (
_threadCallbackList
.Count > 0)
4733
ThreadMethodEntry entry =
_threadCallbackList
.Dequeue();
6177
if (
_threadCallbackList
is not null)
6179
lock (
_threadCallbackList
)
6181
if (
_threadCallbackList
.Count > 0)
6183
current =
_threadCallbackList
.Dequeue();
6230
if (
_threadCallbackList
is not null)
6232
lock (
_threadCallbackList
)
6234
current =
_threadCallbackList
.Count > 0 ?
_threadCallbackList
.Dequeue() : null;
6508
lock (
_threadCallbackList
)
6515
_threadCallbackList
.Enqueue(tme);