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