1 write to _threadCallbackList
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
6391
_threadCallbackList
??= new Queue<ThreadMethodEntry>();
21 references to _threadCallbackList
System.Windows.Forms (21)
System\Windows\Forms\Control.cs (21)
3503
if (IsDisposed &&
_threadCallbackList
is not null &&
_threadCallbackList
.Count > 0)
3505
lock (
_threadCallbackList
)
3508
while (
_threadCallbackList
.Count > 0)
3510
ThreadMethodEntry entry =
_threadCallbackList
.Dequeue();
4622
if (RecreatingHandle &&
_threadCallbackList
is not null)
4626
lock (
_threadCallbackList
)
4651
if (!RecreatingHandle &&
_threadCallbackList
is not null)
4653
lock (
_threadCallbackList
)
4657
while (
_threadCallbackList
.Count > 0)
4659
ThreadMethodEntry entry =
_threadCallbackList
.Dequeue();
6063
if (
_threadCallbackList
is not null)
6065
lock (
_threadCallbackList
)
6067
if (
_threadCallbackList
.Count > 0)
6069
current =
_threadCallbackList
.Dequeue();
6116
if (
_threadCallbackList
is not null)
6118
lock (
_threadCallbackList
)
6120
current =
_threadCallbackList
.Count > 0 ?
_threadCallbackList
.Dequeue() : null;
6394
lock (
_threadCallbackList
)
6401
_threadCallbackList
.Enqueue(tme);