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

/art/runtime/
H A Dinstrumentation.cc294 // Create method enter events for all methods currently on the thread's stack. We only do this
295 // if no debugger is attached to prevent from posting events twice.
366 // Create the method exit events. As the methods didn't really exit the result is 0.
367 // We only do this if no debugger is attached to prevent from posting events twice.
408 static bool HasEvent(Instrumentation::InstrumentationEvent expected, uint32_t events) { argument
409 return (events & expected) != 0;
413 uint32_t events,
419 if (!HasEvent(event, events)) {
433 void Instrumentation::AddListener(InstrumentationListener* listener, uint32_t events) { argument
436 events,
510 RemoveListener(InstrumentationListener* listener, uint32_t events) argument
[all...]
H A Dinstrumentation.h58 // the events they are listening for. The call backs supply the thread, method and dex_pc the event
141 // Add a listener to be notified of the masked together sent of instrumentation events. This
145 void AddListener(InstrumentationListener* listener, uint32_t events)
149 void RemoveListener(InstrumentationListener* listener, uint32_t events)
316 // listeners into executing code and get method enter events for methods already on the stack.
393 // that returning causes a branch to the method exit stub. Generates method enter events.
400 // returning the intended link register. Generates method exit events.
519 // Do we need the fidelity of events that we only get from running within the interpreter?
525 // Do we have any listeners for method entry events? Short-cut to avoid taking the
529 // Do we have any listeners for method exit events
[all...]
H A Ddebugger.cc156 // TODO: post location events is a suspension point and native method entry stubs aren't.
161 // going to be called right after us. To avoid sending JDWP events twice for this location,
163 // send the METHOD_ENTRY event. And we can also group it with other events for this location
169 // sending JDWP events twice for this location, we report the event(s) in MethodExited.
171 // also group it with other events for this location like BREAKPOINT or SINGLE_STEP.
182 // TODO: post location events is a suspension point and native method entry stubs aren't.
185 uint32_t events = Dbg::kMethodExit; local
189 events |= Dbg::kMethodEntry;
192 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, events, &return_value);
211 // JDWP events i
214 uint32_t events = 0; local
[all...]
/art/test/
H A DAndroid.run-test-jvmti-java-library.mk67 933-misc-events/src/art/Test933.java \

Completed in 211 milliseconds