1 write to _threadCallbackList
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
6754
_threadCallbackList
??= new Queue<ThreadMethodEntry>();
21 references to _threadCallbackList
System.Windows.Forms (21)
System\Windows\Forms\Control.cs (21)
3779
if (IsDisposed &&
_threadCallbackList
is not null &&
_threadCallbackList
.Count > 0)
3781
lock (
_threadCallbackList
)
3784
while (
_threadCallbackList
.Count > 0)
3786
ThreadMethodEntry entry =
_threadCallbackList
.Dequeue();
4934
if (RecreatingHandle &&
_threadCallbackList
is not null)
4938
lock (
_threadCallbackList
)
4963
if (!RecreatingHandle &&
_threadCallbackList
is not null)
4965
lock (
_threadCallbackList
)
4969
while (
_threadCallbackList
.Count > 0)
4971
ThreadMethodEntry entry =
_threadCallbackList
.Dequeue();
6426
if (
_threadCallbackList
is not null)
6428
lock (
_threadCallbackList
)
6430
if (
_threadCallbackList
.Count > 0)
6432
current =
_threadCallbackList
.Dequeue();
6479
if (
_threadCallbackList
is not null)
6481
lock (
_threadCallbackList
)
6483
current =
_threadCallbackList
.Count > 0 ?
_threadCallbackList
.Dequeue() : null;
6757
lock (
_threadCallbackList
)
6764
_threadCallbackList
.Enqueue(tme);