Lines Matching defs:_head
47 JvmtiThreadState *JvmtiThreadState::_head = NULL;
91 _next = _head;
92 if (_head != NULL) {
93 _head->_prev = this;
95 _head = this;
128 assert(_head == this, "sanity check");
129 _head = _next;
131 assert(_head != this, "sanity check");
147 // This iteration is initialized with "_head" instead of "JvmtiThreadState::first()"
151 for (JvmtiThreadState *state = _head; state != NULL; state = state->next()) {