Home | History | Annotate | Download | only in runtime

Lines Matching refs:this_object

61   virtual void MethodEntered(Thread* thread, mirror::Object* this_object,
68 virtual void MethodExited(Thread* thread, mirror::Object* this_object,
75 virtual void MethodUnwind(Thread* thread, mirror::Object* this_object,
80 virtual void DexPcMoved(Thread* thread, mirror::Object* this_object,
85 virtual void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
89 virtual void FieldWritten(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
260 void MethodEnterEvent(Thread* thread, mirror::Object* this_object,
264 MethodEnterEventImpl(thread, this_object, method, dex_pc);
269 void MethodExitEvent(Thread* thread, mirror::Object* this_object,
274 MethodExitEventImpl(thread, this_object, method, dex_pc, return_value);
279 void MethodUnwindEvent(Thread* thread, mirror::Object* this_object,
284 void DexPcMovedEvent(Thread* thread, mirror::Object* this_object,
288 DexPcMovedEventImpl(thread, this_object, method, dex_pc);
293 void FieldReadEvent(Thread* thread, mirror::Object* this_object,
298 FieldReadEventImpl(thread, this_object, method, dex_pc, field);
303 void FieldWriteEvent(Thread* thread, mirror::Object* this_object,
308 FieldWriteEventImpl(thread, this_object, method, dex_pc, field, field_value);
320 void PushInstrumentationStackFrame(Thread* self, mirror::Object* this_object,
359 void MethodEnterEventImpl(Thread* thread, mirror::Object* this_object,
362 void MethodExitEventImpl(Thread* thread, mirror::Object* this_object,
366 void DexPcMovedEventImpl(Thread* thread, mirror::Object* this_object,
369 void FieldReadEventImpl(Thread* thread, mirror::Object* this_object,
373 void FieldWriteEventImpl(Thread* thread, mirror::Object* this_object,
470 InstrumentationStackFrame(mirror::Object* this_object, mirror::ArtMethod* method,
472 : this_object_(this_object), method_(method), return_pc_(return_pc), frame_id_(frame_id),