1 write to _linkedSlot
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Threading\ThreadLocal.cs (1)
205
_linkedSlot
= null;
8 references to _linkedSlot
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Threading\ThreadLocal.cs (8)
185
Debug.Assert(
_linkedSlot
!= null, "Should be non-null if not yet disposed");
186
for (LinkedSlot? linkedSlot =
_linkedSlot
._next; linkedSlot != null; linkedSlot = linkedSlot._next)
396
Debug.Assert(
_linkedSlot
!= null, "Should only be null if disposed");
397
LinkedSlot? firstRealNode =
_linkedSlot
._next;
402
linkedSlot._previous =
_linkedSlot
;
409
_linkedSlot
._next = linkedSlot;
442
LinkedSlot? linkedSlot =
_linkedSlot
;
467
for (LinkedSlot? linkedSlot =
_linkedSlot
?._next; linkedSlot != null; linkedSlot = linkedSlot._next)