Lines Matching defs:this_object
171 mirror::Object* this_object = (*it).this_object_;
175 instrumentation->MethodEnterEvent(thread, this_object, method, dex_pc);
404 void Instrumentation::MethodEnterEventImpl(Thread* thread, mirror::Object* this_object,
414 cur->MethodEntered(thread, this_object, method, dex_pc);
418 void Instrumentation::MethodExitEventImpl(Thread* thread, mirror::Object* this_object,
428 cur->MethodExited(thread, this_object, method, dex_pc, return_value);
432 void Instrumentation::MethodUnwindEvent(Thread* thread, mirror::Object* this_object,
442 void Instrumentation::DexPcMovedEventImpl(Thread* thread, mirror::Object* this_object,
451 listener->DexPcMoved(thread, this_object, method, dex_pc);
481 void Instrumentation::PushInstrumentationStackFrame(Thread* self, mirror::Object* this_object,
490 instrumentation::InstrumentationStackFrame instrumentation_frame(this_object, method, lr,
494 MethodEnterEvent(self, this_object, method, 0);
522 mirror::Object* this_object = instrumentation_frame.this_object_;
523 MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value);