Lines Matching full:node
138 // Internal node structure, one for each global handle.
139 class Node;
150 static Node* head_;
151 static Node* head() { return head_; }
152 static void set_head(Node* value) { head_ = value; }
155 static Node* first_free_;
156 static Node* first_free() { return first_free_; }
157 static void set_first_free(Node* value) { first_free_ = value; }
161 // |first_deallocated| points to last deallocated node before
167 // node node ... node node
170 static Node* first_deallocated_;
171 static Node* first_deallocated() { return first_deallocated_; }
172 static void set_first_deallocated(Node* value) {