Searched defs:_head (Results 1 - 13 of 13) sorted by relevance

/openjdk7/hotspot/src/share/vm/services/
H A DmemTrackWorker.hpp84 int _head, _tail; // head and tail pointers to above circular buffer member in class:MemTrackWorker
114 return (_tail >= _head ? (_tail - _head + 1) : (MAX_GENERATIONS - (_head - _tail) + 1));
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiThreadState.cpp47 JvmtiThreadState *JvmtiThreadState::_head = NULL; member in class:JvmtiThreadState
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; stat
[all...]
H A DjvmtiThreadState.hpp101 static JvmtiThreadState *_head; member in class:JvmtiThreadState
146 return _head;
H A DjvmtiEnvBase.hpp449 struct StackInfoNode *_head; member in class:VM_GetMultipleStackTraces
453 struct StackInfoNode *head() { return _head; }
454 void set_head(StackInfoNode *head) { _head = head; }
466 _head = NULL;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSet.hpp290 HeapRegion* _head; member in class:HeapRegionLinkedList
294 HeapRegion* head() { return _head; }
H A DsparsePRT.hpp339 SparsePRT* _head; member in class:VALUE_OBJ_CLASS_SPEC
343 SparsePRTCleanupTask() : _head(NULL), _tail(NULL) { }
346 SparsePRT* head() { return _head; }
H A Dg1CollectedHeap.hpp89 HeapRegion* _head; member in class:YoungList
139 void clear() { _head = NULL; _length = 0; }
147 HeapRegion* first_region() { return _head; }
/openjdk7/hotspot/src/share/vm/memory/
H A DfreeList.hpp53 Chunk* _head; // Head of list of free chunks member in class:VALUE_OBJ_CLASS_SPEC
107 return _head;
111 _head = v;
112 assert(!_head || _head->size() == _size, "bad chunk size");
/openjdk7/hotspot/src/os/windows/vm/
H A DattachListener_windows.cpp74 static Win32AttachOperation* _head; member in class:Win32AttachListener
78 static Win32AttachOperation* head() { return _head; }
79 static void set_head(Win32AttachOperation* head) { _head = head; }
114 Win32AttachOperation* Win32AttachListener::_head; member in class:Win32AttachListener
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp97 static SolarisAttachOperation* _head; member in class:SolarisAttachListener
100 static SolarisAttachOperation* head() { return _head; }
101 static void set_head(SolarisAttachOperation* head) { _head = head; }
171 SolarisAttachOperation* SolarisAttachListener::_head = NULL; member in class:SolarisAttachListener
/openjdk7/hotspot/src/share/vm/opto/
H A Dloopnode.hpp335 Node *_head; // Head of loop member in class:IdealLoopTree
354 _head(head), _tail(tail),
486 bool is_counted() { return is_loop() && _head != NULL && _head->is_CountedLoop(); }
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp719 Block* _head; // Head of loop member in class:ciTypeFlow::Loop
726 _head(head), _tail(tail),
733 Block* head() const { return _head; }
738 void set_head(Block* hd) { _head = hd; }
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp1338 objArrayOop _head; member in class:BacktraceBuilder
1355 BacktraceBuilder(TRAPS): _methods(NULL), _bcis(NULL), _head(NULL) {
1357 _backtrace = _head;
1362 objArrayHandle old_head(THREAD, _head);
1380 _head = new_head();

Completed in 89 milliseconds