Home
last modified time | relevance | path

Searched refs:GetThisObject (Results 1 – 13 of 13) sorted by relevance

/art/runtime/interpreter/
Dshadow_frame.cc23 mirror::Object* ShadowFrame::GetThisObject() const { in GetThisObject() function in art::ShadowFrame
37 mirror::Object* ShadowFrame::GetThisObject(uint16_t num_ins) const { in GetThisObject() function in art::ShadowFrame
Dshadow_frame.h280 mirror::Object* GetThisObject() const REQUIRES_SHARED(Locks::mutator_lock_);
282 mirror::Object* GetThisObject(uint16_t num_ins) const REQUIRES_SHARED(Locks::mutator_lock_);
Dinterpreter.cc255 instrumentation->MethodEnterEvent(self, shadow_frame.GetThisObject(code_item->ins_size_), in Execute()
259 shadow_frame.GetThisObject(code_item->ins_size_), in Execute()
Dinterpreter_switch_impl.cc136 shadow_frame.GetThisObject(code_item->ins_size_), in DoDexPcMoveEvent()
266 instrumentation->MethodExitEvent(self, shadow_frame.GetThisObject(code_item->ins_size_), in ExecuteSwitchImpl()
287 instrumentation->MethodExitEvent(self, shadow_frame.GetThisObject(code_item->ins_size_), in ExecuteSwitchImpl()
309 instrumentation->MethodExitEvent(self, shadow_frame.GetThisObject(code_item->ins_size_), in ExecuteSwitchImpl()
330 instrumentation->MethodExitEvent(self, shadow_frame.GetThisObject(code_item->ins_size_), in ExecuteSwitchImpl()
371 instrumentation->MethodExitEvent(self, shadow_frame.GetThisObject(code_item->ins_size_), in ExecuteSwitchImpl()
Dinterpreter_common.cc417 instrumentation->MethodUnwindEvent(self, shadow_frame.GetThisObject(), in EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL()
/art/test/461-get-reference-vreg/
Dget_reference_vreg_jni.cc45 CHECK_EQ(GetThisObject(), this_value_); in VisitFrame()
/art/runtime/
Dstack.h166 mirror::Object* GetThisObject() const REQUIRES_SHARED(Locks::mutator_lock_);
Dinstrumentation.cc221 InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, 0, GetFrameId(), in InstrumentationInstallStack()
274 InstrumentationStackFrame instrumentation_frame(GetThisObject(), m, return_pc, GetFrameId(), in InstrumentationInstallStack()
Dstack.cc136 mirror::Object* StackVisitor::GetThisObject() const { in GetThisObject() function in art::StackVisitor
Ddebugger.h482 static JDWP::JdwpError GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id,
Ddebugger.cc2506 this_object = GetThisObject(); in VisitFrame()
2515 JDWP::JdwpError Dbg::GetThisObject(JDWP::ObjectId thread_id, JDWP::FrameId frame_id, in GetThisObject() function in art::Dbg
2981 this_at_throw_.Assign(GetThisObject()); in VisitFrame()
Dthread.cc3139 this_object_ = GetThisObject(); in VisitFrame()
/art/runtime/jdwp/
Djdwp_handler.cc1390 JdwpError rc = Dbg::GetThisObject(thread_id, frame_id, &object_id); in SF_ThisObject()