1 write to _threadCallbackList
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
6526
_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();
6198
if (
_threadCallbackList
is not null)
6200
lock (
_threadCallbackList
)
6202
if (
_threadCallbackList
.Count > 0)
6204
current =
_threadCallbackList
.Dequeue();
6251
if (
_threadCallbackList
is not null)
6253
lock (
_threadCallbackList
)
6255
current =
_threadCallbackList
.Count > 0 ?
_threadCallbackList
.Dequeue() : null;
6529
lock (
_threadCallbackList
)
6536
_threadCallbackList
.Enqueue(tme);