Home | History | Annotate | Download | only in runtime

Lines Matching defs:this_object

237   void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
244 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
247 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
254 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value);
257 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
265 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
268 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
271 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
274 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
277 void FieldWritten(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
280 Dbg::PostFieldModificationEvent(method, dex_pc, this_object, field, &field_value);
2437 : StackVisitor(thread, context), this_object(NULL), frame_id(frame_id) {}
2445 this_object = GetThisObject();
2450 mirror::Object* this_object;
2471 *result = gRegistry->Add(visitor.this_object);
2807 this_object,
2813 DCHECK_EQ(m->IsStatic(), this_object == nullptr);
2817 gJdwpState->PostLocationEvent(&location, this_object, event_flags, return_value);
2821 mirror::Object* this_object, mirror::ArtField* f) {
2830 gJdwpState->PostFieldEvent(&location, f, this_object, nullptr, false);
2834 mirror::Object* this_object, mirror::ArtField* f,
2845 gJdwpState->PostFieldEvent(&location, f, this_object, field_value, true);
2870 void Dbg::UpdateDebugger(Thread* thread, mirror::Object* this_object,
2944 Dbg::PostLocationEvent(m, dex_pc, this_object, event_flags, return_value);