Lines Matching refs:next
40 idle_ = idle_->next;
44 cur->next = busy_;
62 if (cur->next != nullptr) {
63 cur->next->prev = cur->prev;
66 cur->prev->next = cur->next;
69 idle_ = cur->next;
75 cur = cur->next;
87 cur = cur->next; in Idle()
93 busy_ = busy_->next; in Idle()
95 if (cur->next != nullptr) { in Idle()
96 cur->next->prev = cur->prev; in Idle()
99 cur->prev->next = cur->next; in Idle()
102 cur->next = idle_; in Idle()
126 Node *next = nullptr; member