1 write to _threadCallbackList
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
6745
_threadCallbackList
??= new Queue<ThreadMethodEntry>();
21 references to _threadCallbackList
System.Windows.Forms (21)
System\Windows\Forms\Control.cs (21)
3770
if (IsDisposed &&
_threadCallbackList
is not null &&
_threadCallbackList
.Count > 0)
3772
lock (
_threadCallbackList
)
3775
while (
_threadCallbackList
.Count > 0)
3777
ThreadMethodEntry entry =
_threadCallbackList
.Dequeue();
4925
if (RecreatingHandle &&
_threadCallbackList
is not null)
4929
lock (
_threadCallbackList
)
4954
if (!RecreatingHandle &&
_threadCallbackList
is not null)
4956
lock (
_threadCallbackList
)
4960
while (
_threadCallbackList
.Count > 0)
4962
ThreadMethodEntry entry =
_threadCallbackList
.Dequeue();
6417
if (
_threadCallbackList
is not null)
6419
lock (
_threadCallbackList
)
6421
if (
_threadCallbackList
.Count > 0)
6423
current =
_threadCallbackList
.Dequeue();
6470
if (
_threadCallbackList
is not null)
6472
lock (
_threadCallbackList
)
6474
current =
_threadCallbackList
.Count > 0 ?
_threadCallbackList
.Dequeue() : null;
6748
lock (
_threadCallbackList
)
6755
_threadCallbackList
.Enqueue(tme);