Searched refs:InstrumentationListener (Results 1 – 6 of 6) sorted by relevance
/art/runtime/ |
D | instrumentation.h | 61 struct InstrumentationListener { struct 62 InstrumentationListener() {} in InstrumentationListener() function 63 virtual ~InstrumentationListener() {} in ~InstrumentationListener() argument 178 void AddListener(InstrumentationListener* listener, uint32_t events) 182 void RemoveListener(InstrumentationListener* listener, uint32_t events) 623 std::list<InstrumentationListener*> method_entry_listeners_ GUARDED_BY(Locks::mutator_lock_); 624 std::list<InstrumentationListener*> method_exit_listeners_ GUARDED_BY(Locks::mutator_lock_); 625 std::list<InstrumentationListener*> method_unwind_listeners_ GUARDED_BY(Locks::mutator_lock_); 626 std::list<InstrumentationListener*> branch_listeners_ GUARDED_BY(Locks::mutator_lock_); 627 std::list<InstrumentationListener*> invoke_virtual_or_interface_listeners_ [all …]
|
D | instrumentation.cc | 51 void InstrumentationListener::MethodExited(Thread* thread, in MethodExited() 63 void InstrumentationListener::FieldWritten(Thread* thread, in FieldWritten() 441 std::list<InstrumentationListener*>& list, in PotentiallyAddListenerTo() 442 InstrumentationListener* listener, in PotentiallyAddListenerTo() 460 void Instrumentation::AddListener(InstrumentationListener* listener, uint32_t events) { in AddListener() 512 std::list<InstrumentationListener*>& list, in PotentiallyRemoveListenerFrom() 513 InstrumentationListener* listener, in PotentiallyRemoveListenerFrom() 528 for (InstrumentationListener* l : list) { in PotentiallyRemoveListenerFrom() 537 void Instrumentation::RemoveListener(InstrumentationListener* listener, uint32_t events) { in RemoveListener() 954 for (InstrumentationListener* listener : method_entry_listeners_) { in MethodEnterEventImpl() [all …]
|
D | trace.h | 96 class Trace FINAL : public instrumentation::InstrumentationListener {
|
D | instrumentation_test.cc | 38 class TestInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
|
D | debugger.cc | 136 class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
|
/art/runtime/openjdkjvmti/ |
D | events.cc | 309 class JvmtiMethodTraceListener FINAL : public art::instrumentation::InstrumentationListener {
|