• Home
  • Raw
  • Download

Lines Matching refs:thread

77   virtual void MethodEntered(Thread* thread, ArtMethod* method)
80 virtual void MethodExited(Thread* thread,
89 virtual void MethodExited(Thread* thread,
97 virtual void MethodUnwind(Thread* thread,
103 virtual void DexPcMoved(Thread* thread,
110 virtual void FieldRead(Thread* thread,
116 virtual void FieldWritten(Thread* thread,
125 virtual void FieldWritten(Thread* thread,
134 virtual void ExceptionThrown(Thread* thread,
139 virtual void ExceptionHandled(Thread* thread, Handle<mirror::Throwable> exception_object)
143 virtual void Branch(Thread* thread,
152 virtual void WatchedFramePop(Thread* thread ATTRIBUTE_UNUSED,
418 bool NeedsDexPcEvents(ArtMethod* method, Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_);
429 void MethodEnterEvent(Thread* thread, ArtMethod* method) const in MethodEnterEvent() argument
432 MethodEnterEventImpl(thread, method); in MethodEnterEvent()
438 void MethodExitEvent(Thread* thread, in MethodExitEvent() argument
444 MethodExitEventImpl(thread, method, frame, return_value); in MethodExitEvent()
449 void MethodUnwindEvent(Thread* thread,
455 void DexPcMovedEvent(Thread* thread, in DexPcMovedEvent() argument
461 DexPcMovedEventImpl(thread, this_object, method, dex_pc); in DexPcMovedEvent()
466 void Branch(Thread* thread, ArtMethod* method, uint32_t dex_pc, int32_t offset) const in Branch() argument
469 BranchImpl(thread, method, dex_pc, offset); in Branch()
474 void FieldReadEvent(Thread* thread, in FieldReadEvent() argument
481 FieldReadEventImpl(thread, this_object, method, dex_pc, field); in FieldReadEvent()
486 void FieldWriteEvent(Thread* thread, in FieldWriteEvent() argument
494 FieldWriteEventImpl(thread, this_object, method, dex_pc, field, field_value); in FieldWriteEvent()
499 void WatchedFramePopped(Thread* thread, const ShadowFrame& frame) const in WatchedFramePopped() argument
502 WatchedFramePopImpl(thread, frame); in WatchedFramePopped()
507 void ExceptionThrownEvent(Thread* thread, ObjPtr<mirror::Throwable> exception_object) const
512 void ExceptionHandledEvent(Thread* thread, ObjPtr<mirror::Throwable> exception_object) const
554 void InstrumentThreadStack(Thread* thread, bool deopt_all_frames) REQUIRES(Locks::mutator_lock_);
613 void MethodEnterEventImpl(Thread* thread, ArtMethod* method) const
616 void MethodExitEventImpl(Thread* thread,
621 void DexPcMovedEventImpl(Thread* thread,
626 void BranchImpl(Thread* thread, ArtMethod* method, uint32_t dex_pc, int32_t offset) const
628 void WatchedFramePopImpl(Thread* thread, const ShadowFrame& frame) const
630 void FieldReadEventImpl(Thread* thread,
636 void FieldWriteEventImpl(Thread* thread,