3 writes to _next
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Threading\ThreadLocal.cs (3)
401
linkedSlot.
_next
= firstRealNode;
406
_linkedSlot.
_next
= linkedSlot;
746
linkedSlot._previous.
_next
= linkedSlot._next;
9 references to _next
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Threading\ThreadLocal.cs (9)
186
for (LinkedSlot? linkedSlot = _linkedSlot.
_next
; linkedSlot != null; linkedSlot = linkedSlot.
_next
)
397
LinkedSlot? firstRealNode = _linkedSlot.
_next
;
448
for (linkedSlot = linkedSlot.
_next
; linkedSlot != null; linkedSlot = linkedSlot.
_next
)
464
for (LinkedSlot? linkedSlot = _linkedSlot?.
_next
; linkedSlot != null; linkedSlot = linkedSlot.
_next
)
742
linkedSlot.
_next
?._previous = linkedSlot._previous;
746
linkedSlot._previous._next = linkedSlot.
_next
;