Home | History | Annotate | Download | only in runtime

Lines Matching defs:events

156       // 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;
189 events |= Dbg::kMethodEntry;
192 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, events, &return_value);
211 // JDWP events in the same packet: METHOD_ENTRY, METHOD_EXIT, BREAKPOINT and/or SINGLE_STEP.
214 uint32_t events = 0;
217 events = Dbg::kMethodEntry;
220 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, events, nullptr);