Home
last modified time | relevance | path

Searched refs:GetLink (Results 1 – 12 of 12) sorted by relevance

/art/runtime/
Dmanaged_stack.cc30 current_fragment = current_fragment->GetLink()) { in NumJniShadowFrameReferences()
33 current_frame = current_frame->GetLink()) { in NumJniShadowFrameReferences()
45 current_fragment = current_fragment->GetLink()) { in ShadowFramesContain()
48 current_frame = current_frame->GetLink()) { in ShadowFramesContain()
Dmanaged_stack-inl.h38 top_shadow_frame_ = frame->GetLink(); in PopShadowFrame()
Dhandle_scope-inl.h220 LocalScopeType* next = reinterpret_cast<LocalScopeType*>(current_scope_->GetLink()); in ~VariableSizedHandleScope()
231 cur = reinterpret_cast<const LocalScopeType*>(cur->GetLink()); in NumberOfReferences()
243 cur = reinterpret_cast<const LocalScopeType*>(cur->GetLink()); in Contains()
253 cur = reinterpret_cast<LocalScopeType*>(cur->GetLink()); in VisitRoots()
Dmanaged_stack.h66 ManagedStack* GetLink() const { in GetLink() function
Dhandle_scope.h60 BaseHandleScope* GetLink() const { in GetLink() function
Dstack.cc759 current_fragment != nullptr; current_fragment = current_fragment->GetLink()) { in WalkStack()
922 cur_shadow_frame_ = cur_shadow_frame_->GetLink(); in WalkStack()
Dthread.h877 DCHECK_EQ(handle_scope->GetLink(), tlsPtr_.top_handle_scope); in PushHandleScope()
884 tlsPtr_.top_handle_scope = tlsPtr_.top_handle_scope->GetLink(); in PopHandleScope()
/art/runtime/interpreter/
Dshadow_frame.h130 ShadowFrame* GetLink() const { in GetLink() function
Dinterpreter.cc614 shadow_frame = shadow_frame->GetLink(); in EnterInterpreterFromDeoptimize()
693 ShadowFrame* prev_frame = frame.GetLink(); in PrevFrameWillRetry()
Dunstarted_runtime.cc1019 if (shadow_frame->GetLink() == nullptr) { in GetImmediateCaller()
1022 return ArtMethod::PrettyMethod(shadow_frame->GetLink()->GetMethod()); in GetImmediateCaller()
1029 if (shadow_frame->GetLink() == nullptr) { in CheckCallers()
1033 std::string found_caller = ArtMethod::PrettyMethod(shadow_frame->GetLink()->GetMethod()); in CheckCallers()
1038 shadow_frame = shadow_frame->GetLink(); in CheckCallers()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc679 while (linked->GetLink() != nullptr) { in HandleDeoptimization()
680 linked = linked->GetLink(); in HandleDeoptimization()
/art/compiler/jni/
Djni_compiler_test.cc549 for (BaseHandleScope* cur = self->GetTopHandleScope(); cur != nullptr; cur = cur->GetLink()) { in NumHandleReferences()