Lines Matching refs:next_
181 next_(this), in ThreadState()
198 next_->previous_ = previous_; in Unlink()
199 previous_->next_ = next_; in Unlink()
207 next_ = flying_anchor->next_; in LinkInto()
209 flying_anchor->next_ = this; in LinkInto()
210 next_->previous_ = this; in LinkInto()
215 ThreadState* gotten = free_anchor_->next_; in GetFreeThreadState()
232 if (next_ == thread_manager_->in_use_anchor_) return NULL; in Next()
233 return next_; in Next()
259 for (ThreadState* current = anchor->next_; current != anchor;) { in DeleteThreadStateList()
260 ThreadState* next = current->next_; in DeleteThreadStateList()