3 writes to _next
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Threading\ThreadLocal.cs (3)
401
linkedSlot.
_next
= firstRealNode;
409
_linkedSlot.
_next
= linkedSlot;
752
linkedSlot._previous.
_next
= linkedSlot._next;
10 references to _next
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Threading\ThreadLocal.cs (10)
186
for (LinkedSlot? linkedSlot = _linkedSlot.
_next
; linkedSlot != null; linkedSlot = linkedSlot.
_next
)
397
LinkedSlot? firstRealNode = _linkedSlot.
_next
;
451
for (linkedSlot = linkedSlot.
_next
; linkedSlot != null; linkedSlot = linkedSlot.
_next
)
467
for (LinkedSlot? linkedSlot = _linkedSlot?.
_next
; linkedSlot != null; linkedSlot = linkedSlot.
_next
)
745
if (linkedSlot.
_next
!= null)
747
linkedSlot.
_next
._previous = linkedSlot._previous;
752
linkedSlot._previous._next = linkedSlot.
_next
;