11 writes to Next
System.Threading.Channels (11)
System\Threading\Channels\ChannelUtilities.cs (11)
113
last.
Next
= head;
117
op.
Next
= op.Previous = null;
131
head = op.
Next
= op.Previous = op;
138
op.
Next
= head;
140
last.
Next
= op;
170
op.Previous.
Next
= op.Next;
179
op.
Next
= op.Previous = null;
215
current.
Next
= current.Previous = null;
243
current.
Next
= current.Previous = null;
271
current.
Next
= current.Previous = null;
306
current.
Next
= current.Previous = null;
16 references to Next
System.Threading.Channels (16)
System\Threading\Channels\ChannelUtilities.cs (16)
101
Debug.Assert(head.
Next
is not null);
103
if (head.
Next
== head)
111
head = head.
Next
;
127
Debug.Assert(op.
Next
is null && op.Previous is null);
152
Debug.Assert(op.
Next
is null == op.Previous is null);
155
if (head is null || op.
Next
is null)
162
if (op.
Next
== op)
170
op.Previous.Next = op.
Next
;
171
op.
Next
.Previous = op.Previous;
175
head = op.
Next
;
212
TAsyncOp? next = current.
Next
;
240
TAsyncOp? next = current.
Next
;
268
TAsyncOp? next = current.
Next
;
303
TAsyncOp? next = current.
Next
;
331
current = current.
Next
;
352
current = current.
Next
;