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;
93 busy_ = busy_->next;
95 if (cur->next != nullptr) {
96 cur->next->prev = cur->prev;
99 cur->prev->next = cur->next;
102 cur->next = idle_;
126 Node *next = nullptr;