Lines Matching refs:next
252 // read in the next buffer.
308 Buffer* next = cur->next_;
310 cur = next;
345 // Move to next buffer
383 // Go to next buffer if there still are some bytes to write
389 // Additionally, since we're moved to the next buffer, read head
420 // Additionally, since we're moved to the next buffer, read head
430 // If write head is full, next buffer is either read head or not empty.
445 Buffer* next = new Buffer(env_, len);
448 next->next_ = next;
449 write_head_ = next;
450 read_head_ = next;
452 next->next_ = w->next_;
453 w->next_ = next;
483 Buffer* next = current->next_;
485 current = next;