/openjdk7/hotspot/src/share/vm/services/ |
H A D | memTrackWorker.hpp | 84 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 D | jvmtiThreadState.cpp | 47 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 D | jvmtiThreadState.hpp | 101 static JvmtiThreadState *_head; member in class:JvmtiThreadState 146 return _head;
|
H A D | jvmtiEnvBase.hpp | 449 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 D | heapRegionSet.hpp | 290 HeapRegion* _head; member in class:HeapRegionLinkedList 294 HeapRegion* head() { return _head; }
|
H A D | sparsePRT.hpp | 339 SparsePRT* _head; member in class:VALUE_OBJ_CLASS_SPEC 343 SparsePRTCleanupTask() : _head(NULL), _tail(NULL) { } 346 SparsePRT* head() { return _head; }
|
H A D | g1CollectedHeap.hpp | 89 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 D | freeList.hpp | 53 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 D | attachListener_windows.cpp | 74 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 D | attachListener_solaris.cpp | 97 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 D | loopnode.hpp | 335 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 D | ciTypeFlow.hpp | 719 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 D | javaClasses.cpp | 1338 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();
|