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, in MethodEnterEvent() argument
264 MethodEnterEventImpl(thread, this_object, method, dex_pc); in MethodEnterEvent()
269 void MethodExitEvent(Thread* thread, mirror::Object* this_object, in MethodExitEvent() argument
274 MethodExitEventImpl(thread, this_object, method, dex_pc, return_value); in MethodExitEvent()
279 void MethodUnwindEvent(Thread* thread, mirror::Object* this_object,
284 void DexPcMovedEvent(Thread* thread, mirror::Object* this_object, in DexPcMovedEvent() argument
288 DexPcMovedEventImpl(thread, this_object, method, dex_pc); in DexPcMovedEvent()
293 void FieldReadEvent(Thread* thread, mirror::Object* this_object, in FieldReadEvent() argument
298 FieldReadEventImpl(thread, this_object, method, dex_pc, field); in FieldReadEvent()
303 void FieldWriteEvent(Thread* thread, mirror::Object* this_object, in FieldWriteEvent() argument
308 FieldWriteEventImpl(thread, this_object, method, dex_pc, field, field_value); in FieldWriteEvent()
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, in InstrumentationStackFrame()
472 : this_object_(this_object), method_(method), return_pc_(return_pc), frame_id_(frame_id), in InstrumentationStackFrame()