Searched refs:set_next (Results 1 - 25 of 83) sorted by relevance

1234

/openjdk7/hotspot/src/share/vm/runtime/
H A DmonitorChunk.hpp46 void set_next(MonitorChunk* next) { _next = next; } function in class:MonitorChunk
H A DvmThread.cpp73 _queue[i]->set_next(_queue[i]);
92 n->set_next(q->next());
94 q->set_next(n);
110 q->prev()->set_next(q->next());
133 _queue[prio]->prev()->set_next(NULL);
135 _queue[prio]->set_next(_queue[prio]);
H A Dmutex.hpp224 debug_only(void set_next(Monitor *next) { _next = next; })
H A DvframeArray.hpp178 void set_next(vframeArray* value) { _next = value; } function in class:vframeArray
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSet.inline.hpp114 hr->set_next(_head);
131 _tail->set_next(hr);
150 hr->set_next(NULL);
H A DptrQueue.cpp138 node->set_next(_fl_owner->_buf_free_list);
242 _completed_buffers_tail->set_next(cbn);
294 _completed_buffers_tail->set_next(src->_completed_buffers_head);
H A DheapRegionSet.cpp281 from_list->_tail->set_next(_head);
320 _tail->set_next(from_list->_head);
345 curr->set_next(NULL);
380 prev->set_next(next);
389 curr->set_next(NULL);
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddecoder_elf.cpp69 file->set_next(_opened_elf_files);
H A Dhashtable.inline.hpp103 entry->set_next(bucket(index));
109 entry->set_next(_free_list);
H A DelfFile.hpp126 void set_next(ElfFile* file) { m_next = file; } function in class:ElfFile
H A Dhashtable.cpp179 p->set_next(new_list);
234 p->set_next(high_list);
237 p->set_next(low_list);
247 last_low_entry->set_next(high_list);
H A Dhashtable.hpp80 void set_next(BasicHashtableEntry<F>* next) { function in class:BasicHashtableEntry
205 entry->set_next(NULL);
/openjdk7/hotspot/src/os/windows/vm/
H A DattachListener_windows.cpp144 void set_next(Win32AttachOperation* next) { _next = next; } function in class:Win32AttachOperation
149 set_next(NULL);
172 op->set_next(available());
209 op->set_next(NULL);
213 tail()->set_next(op);
332 set_next(Win32AttachListener::available());
/openjdk7/hotspot/src/share/vm/classfile/
H A DloaderConstraints.hpp118 void set_next(LoaderConstraintEntry* next) { function in class:LoaderConstraintEntry
119 HashtableEntry<klassOop, mtClass>::set_next(next);
H A Dplaceholders.hpp134 void set_next(SeenThread *seen) { _stnext = seen; } function in class:SeenThread
285 seen->set_next(threadEntry);
316 prev->set_next(seen->next());
/openjdk7/hotspot/src/share/vm/services/
H A DmemTrackWorker.hpp68 tmp->set_next(head);
H A DmemTracker.cpp290 cur_head->set_next(NULL);
317 rec->set_next(NULL);
325 rec->set_next(cur_head);
329 rec->set_next(cur_head);
353 rec->set_next(NULL);
359 rec->set_next(cur_head);
363 rec->set_next(cur_head);
424 _global_recorder->set_next(pending_recorders);
H A DthreadService.hpp222 void set_next(ThreadSnapshot* n) { _next = n; } function in class:ThreadSnapshot
312 void set_next(ThreadConcurrentLocks* n) { _next = n; } function in class:ThreadConcurrentLocks
351 void set_next(ThreadDumpResult* next) { _next = next; } function in class:ThreadDumpResult
369 void set_next(DeadlockCycle* d) { _next = d; } function in class:DeadlockCycle
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvThreadState.hpp136 void set_next(JvmtiEnvThreadState* link) { _next = link; } function in class:JvmtiEnvThreadState
H A DjvmtiThreadState.cpp169 previous_ets->set_next(ets);
194 previous_ets->set_next(new_ets);
/openjdk7/hotspot/src/share/vm/opto/
H A Dblock.hpp632 void set_next(Block *b, Block *n) const { _next_list[b->_pre_order] = n; } function in class:Trace
644 set_next(_last, NULL);
655 set_next(b, NULL);
671 set_next(tr->last_block(), next(b));
676 set_next(b, tr->first_block());
697 set_next(_last, b);
H A DindexSet.hpp115 void set_next(BitBlock *next) { _data._next = next; } function in class:IndexSet::BitBlock
221 void set_next(IndexSet *next) { function in class:IndexSet
/openjdk7/hotspot/src/share/vm/code/
H A DvtableStubs.hpp57 void set_next(VtableStub* n) { _next = n; } function in class:VtableStub
/openjdk7/hotspot/src/share/vm/compiler/
H A DmethodLiveness.hpp132 void set_next(BasicBlock *next) { _next = next; } function in class:MethodLiveness::BasicBlock
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp151 void set_next(SolarisAttachOperation* next) { _next = next; } function in class:SolarisAttachOperation
161 set_next(NULL);
491 op->set_next(NULL);
495 tail()->set_next(op);

Completed in 110 milliseconds

1234