1 write to _threadCallbackList
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
6432
_threadCallbackList
??= new Queue<ThreadMethodEntry>();
21 references to _threadCallbackList
System.Windows.Forms (21)
System\Windows\Forms\Control.cs (21)
3504
if (IsDisposed &&
_threadCallbackList
is not null &&
_threadCallbackList
.Count > 0)
3506
lock (
_threadCallbackList
)
3509
while (
_threadCallbackList
.Count > 0)
3511
ThreadMethodEntry entry =
_threadCallbackList
.Dequeue();
4623
if (RecreatingHandle &&
_threadCallbackList
is not null)
4627
lock (
_threadCallbackList
)
4652
if (!RecreatingHandle &&
_threadCallbackList
is not null)
4654
lock (
_threadCallbackList
)
4658
while (
_threadCallbackList
.Count > 0)
4660
ThreadMethodEntry entry =
_threadCallbackList
.Dequeue();
6104
if (
_threadCallbackList
is not null)
6106
lock (
_threadCallbackList
)
6108
if (
_threadCallbackList
.Count > 0)
6110
current =
_threadCallbackList
.Dequeue();
6157
if (
_threadCallbackList
is not null)
6159
lock (
_threadCallbackList
)
6161
current =
_threadCallbackList
.Count > 0 ?
_threadCallbackList
.Dequeue() : null;
6435
lock (
_threadCallbackList
)
6442
_threadCallbackList
.Enqueue(tme);