HomeSort by relevance Sort by last modified time
    Searched refs:InstrumentationListener (Results 1 - 5 of 5) sorted by null

  /art/runtime/
instrumentation.h 60 struct InstrumentationListener {
61 InstrumentationListener() {}
62 virtual ~InstrumentationListener() {}
145 void AddListener(InstrumentationListener* listener, uint32_t events)
149 void RemoveListener(InstrumentationListener* listener, uint32_t events)
573 std::list<InstrumentationListener*> method_entry_listeners_ GUARDED_BY(Locks::mutator_lock_);
574 std::list<InstrumentationListener*> method_exit_listeners_ GUARDED_BY(Locks::mutator_lock_);
575 std::list<InstrumentationListener*> method_unwind_listeners_ GUARDED_BY(Locks::mutator_lock_);
576 std::list<InstrumentationListener*> branch_listeners_ GUARDED_BY(Locks::mutator_lock_);
577 std::list<InstrumentationListener*> invoke_virtual_or_interface_listeners
    [all...]
instrumentation.cc 414 std::list<InstrumentationListener*>& list,
415 InstrumentationListener* listener,
433 void Instrumentation::AddListener(InstrumentationListener* listener, uint32_t events) {
485 std::list<InstrumentationListener*>& list,
486 InstrumentationListener* listener,
501 for (InstrumentationListener* l : list) {
510 void Instrumentation::RemoveListener(InstrumentationListener* listener, uint32_t events) {
    [all...]
trace.h 96 class Trace FINAL : public instrumentation::InstrumentationListener {
142 // InstrumentationListener implementation.
instrumentation_test.cc 35 class TestInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
    [all...]
debugger.cc 147 class DebugInstrumentationListener FINAL : public instrumentation::InstrumentationListener {
    [all...]

Completed in 258 milliseconds