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

1234

/openjdk9/hotspot/src/share/vm/gc/g1/
H A DheapRegionSet.inline.hpp74 hr->set_next(curr);
79 _tail->set_next(hr);
88 hr->prev()->set_next(hr);
107 result->set_next(NULL);
118 _tail->set_next(NULL);
H A DheapRegionSet.cpp105 curr->set_next(NULL);
153 _tail->set_next(curr_from);
159 curr_from->set_next(curr_to);
164 curr_to->prev()->set_next(curr_from);
209 prev->set_next(next);
222 curr->set_next(NULL);
H A DptrQueue.cpp151 node->set_next(NULL);
159 node->set_next(_fl_owner->_buf_free_list);
257 cbn->set_next(NULL);
263 _completed_buffers_tail->set_next(cbn);
316 _completed_buffers_tail->set_next(src->_completed_buffers_head);
H A Dg1StringDedupTable.hpp62 void set_next(G1StringDedupEntry* next) { function in class:G1StringDedupEntry
/openjdk9/hotspot/src/share/vm/runtime/
H A DmonitorChunk.hpp46 void set_next(MonitorChunk* next) { _next = next; } function in class:MonitorChunk
H A DvmThread.cpp58 _queue[i]->set_next(_queue[i]);
77 n->set_next(q->next());
79 q->set_next(n);
95 q->prev()->set_next(q->next());
118 _queue[prio]->prev()->set_next(NULL);
120 _queue[prio]->set_next(_queue[prio]);
H A DvframeArray.hpp186 void set_next(vframeArray* value) { _next = value; } function in class:vframeArray
/openjdk9/hotspot/src/share/vm/utilities/
H A Dlinkedlist.hpp49 inline void set_next(LinkedListNode<E>* node) { _next = node; } function in class:LinkedListNode
150 node->set_next(this->head());
165 node->set_next(list->head());
202 node->set_next(ref_node);
210 node->set_next(ref_node);
211 p->set_next(node);
220 node->set_next(ref_node->next());
221 ref_node->set_next(node);
249 prev->set_next(to_delete->next());
271 p->set_next(nod
[all...]
H A Ddecoder_elf.cpp69 file->set_next(_opened_elf_files);
H A Dhashtable.inline.hpp105 entry->set_next(bucket(index));
111 entry->set_next(_free_list);
H A DelfFile.hpp127 void set_next(ElfFile* file) { m_next = file; } function in class:ElfFile
H A Dhashtable.cpp168 p->set_next(new_list);
177 entry->set_next(_removed_head);
196 context->_removed_tail->set_next(current);
252 p->set_next(high_list);
255 p->set_next(low_list);
265 last_low_entry->set_next(high_list);
/openjdk9/hotspot/src/share/vm/memory/
H A Dmetachunk.hpp47 void set_next(T* v) { _next = v; assert(v != this, "Boom");} function in class:VALUE_OBJ_CLASS_SPEC
49 void clear_next() { set_next(NULL); }
55 void link_next(T* ptr) { set_next(ptr); }
/openjdk9/hotspot/src/share/vm/oops/
H A DcompiledICHolder.hpp72 void set_next(CompiledICHolder* n) { _next = n; } function in class:CompiledICHolder
/openjdk9/hotspot/src/os/windows/vm/
H A DattachListener_windows.cpp148 void set_next(Win32AttachOperation* next) { _next = next; } function in class:Win32AttachOperation
153 set_next(NULL);
175 op->set_next(available());
213 op->set_next(NULL);
217 tail()->set_next(op);
344 set_next(Win32AttachListener::available());
/openjdk9/hotspot/src/share/vm/classfile/
H A DloaderConstraints.hpp122 void set_next(LoaderConstraintEntry* next) { function in class:LoaderConstraintEntry
123 HashtableEntry<Klass*, mtClass>::set_next(next);
H A Dplaceholders.hpp136 void set_next(SeenThread *seen) { _stnext = seen; } function in class:SeenThread
285 seen->set_next(threadEntry);
316 prev->set_next(seen->next());
/openjdk9/hotspot/src/share/vm/compiler/
H A DmethodMatcher.hpp86 void set_next(BasicMatcher* next) { _next = next; } function in class:BasicMatcher
118 void set_next(InlineMatcher* next) { _next = next; } function in class:InlineMatcher
H A DcompileTask.cpp47 task->set_next(NULL);
52 task->set_next(NULL);
73 task->set_next(_task_free_list);
H A DmethodLiveness.hpp132 void set_next(BasicBlock *next) { _next = next; } function in class:MethodLiveness::BasicBlock
/openjdk9/hotspot/src/share/vm/prims/
H A DjvmtiEnvThreadState.hpp136 void set_next(JvmtiEnvThreadState* link) { _next = link; } function in class:JvmtiEnvThreadState
/openjdk9/hotspot/src/share/vm/code/
H A DdependencyContext.hpp62 void set_next(nmethodBucket* b) { _next = b; } function in class:nmethodBucket
H A DvtableStubs.hpp57 void set_next(VtableStub* n) { _next = n; } function in class:VtableStub
/openjdk9/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp152 void set_next(SolarisAttachOperation* next) { _next = next; } function in class:SolarisAttachOperation
162 set_next(NULL);
501 op->set_next(NULL);
505 tail()->set_next(op);
/openjdk9/hotspot/src/share/vm/services/
H A DthreadService.hpp223 void set_next(ThreadSnapshot* n) { _next = n; } function in class:ThreadSnapshot
319 void set_next(ThreadConcurrentLocks* n) { _next = n; } function in class:ThreadConcurrentLocks
358 void set_next(ThreadDumpResult* next) { _next = next; } function in class:ThreadDumpResult
377 void set_next(DeadlockCycle* d) { _next = d; } function in class:DeadlockCycle

Completed in 234 milliseconds

1234