Searched refs:events (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Dinstrumentation.cc293 // Create method enter events for all methods currently on the thread's stack. We only do this
294 // if no debugger is attached to prevent from posting events twice.
365 // Create the method exit events. As the methods didn't really exit the result is 0.
366 // We only do this if no debugger is attached to prevent from posting events twice.
407 static bool HasEvent(Instrumentation::InstrumentationEvent expected, uint32_t events) { argument
408 return (events & expected) != 0;
412 uint32_t events,
418 if (!HasEvent(event, events)) {
432 void Instrumentation::AddListener(InstrumentationListener* listener, uint32_t events) { argument
435 events,
509 RemoveListener(InstrumentationListener* listener, uint32_t events) argument
[all...]
H A Dinstrumentation.h57 // the events they are listening for. The call backs supply the thread, method and dex_pc the event
140 // Add a listener to be notified of the masked together sent of instrumentation events. This
144 void AddListener(InstrumentationListener* listener, uint32_t events)
148 void RemoveListener(InstrumentationListener* listener, uint32_t events)
315 // listeners into executing code and get method enter events for methods already on the stack.
392 // that returning causes a branch to the method exit stub. Generates method enter events.
399 // returning the intended link register. Generates method exit events.
513 // Do we need the fidelity of events that we only get from running within the interpreter?
519 // Do we have any listeners for method entry events? Short-cut to avoid taking the
523 // Do we have any listeners for method exit events
[all...]
H A Ddebugger.cc146 // TODO: post location events is a suspension point and native method entry stubs aren't.
151 // going to be called right after us. To avoid sending JDWP events twice for this location,
153 // send the METHOD_ENTRY event. And we can also group it with other events for this location
159 // sending JDWP events twice for this location, we report the event(s) in MethodExited.
161 // also group it with other events for this location like BREAKPOINT or SINGLE_STEP.
172 // TODO: post location events is a suspension point and native method entry stubs aren't.
175 uint32_t events = Dbg::kMethodExit; local
179 events |= Dbg::kMethodEntry;
182 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, events, &return_value);
201 // JDWP events i
204 uint32_t events = 0; local
[all...]

Completed in 111 milliseconds