1 write to _threadCallbackList
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
6528
_threadCallbackList
??= new Queue<ThreadMethodEntry>();
21 references to _threadCallbackList
System.Windows.Forms (21)
System\Windows\Forms\Control.cs (21)
3598
if (IsDisposed &&
_threadCallbackList
is not null &&
_threadCallbackList
.Count > 0)
3600
lock (
_threadCallbackList
)
3603
while (
_threadCallbackList
.Count > 0)
3605
ThreadMethodEntry entry =
_threadCallbackList
.Dequeue();
4717
if (RecreatingHandle &&
_threadCallbackList
is not null)
4721
lock (
_threadCallbackList
)
4746
if (!RecreatingHandle &&
_threadCallbackList
is not null)
4748
lock (
_threadCallbackList
)
4752
while (
_threadCallbackList
.Count > 0)
4754
ThreadMethodEntry entry =
_threadCallbackList
.Dequeue();
6200
if (
_threadCallbackList
is not null)
6202
lock (
_threadCallbackList
)
6204
if (
_threadCallbackList
.Count > 0)
6206
current =
_threadCallbackList
.Dequeue();
6253
if (
_threadCallbackList
is not null)
6255
lock (
_threadCallbackList
)
6257
current =
_threadCallbackList
.Count > 0 ?
_threadCallbackList
.Dequeue() : null;
6531
lock (
_threadCallbackList
)
6538
_threadCallbackList
.Enqueue(tme);