1 write to _threadCallbackList
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
6430
_threadCallbackList
??= new Queue<ThreadMethodEntry>();
21 references to _threadCallbackList
System.Windows.Forms (21)
System\Windows\Forms\Control.cs (21)
3502
if (IsDisposed &&
_threadCallbackList
is not null &&
_threadCallbackList
.Count > 0)
3504
lock (
_threadCallbackList
)
3507
while (
_threadCallbackList
.Count > 0)
3509
ThreadMethodEntry entry =
_threadCallbackList
.Dequeue();
4621
if (RecreatingHandle &&
_threadCallbackList
is not null)
4625
lock (
_threadCallbackList
)
4650
if (!RecreatingHandle &&
_threadCallbackList
is not null)
4652
lock (
_threadCallbackList
)
4656
while (
_threadCallbackList
.Count > 0)
4658
ThreadMethodEntry entry =
_threadCallbackList
.Dequeue();
6102
if (
_threadCallbackList
is not null)
6104
lock (
_threadCallbackList
)
6106
if (
_threadCallbackList
.Count > 0)
6108
current =
_threadCallbackList
.Dequeue();
6155
if (
_threadCallbackList
is not null)
6157
lock (
_threadCallbackList
)
6159
current =
_threadCallbackList
.Count > 0 ?
_threadCallbackList
.Dequeue() : null;
6433
lock (
_threadCallbackList
)
6440
_threadCallbackList
.Enqueue(tme);