Lines Matching defs:event

156       // We also listen to kDexPcMoved instrumentation event so we know the DexPcMoved method is
158 // we report the event in DexPcMoved. However, we must remind this is method entry so we
159 // send the METHOD_ENTRY event. And we can also group it with other events for this location
163 // We also listen to kMethodExited instrumentation event and the current instruction is a
165 // sending JDWP events twice for this location, we report the event(s) in MethodExited.
166 // However, we must remind this is method entry so we send the METHOD_ENTRY event. And we can
199 // We're not recorded to listen to this kind of event, so complain.
200 LOG(ERROR) << "Unexpected method unwind event in debugger " << ArtMethod::PrettyMethod(method)
210 // We also listen to kMethodExited instrumentation event and the current instruction is a
212 // MethodEntered, we delegate event reporting to MethodExited.
255 LOG(ERROR) << "Unexpected branch event in debugger " << ArtMethod::PrettyMethod(method)
266 LOG(ERROR) << "Unexpected invoke event in debugger " << ArtMethod::PrettyMethod(method)
270 // TODO Might be worth it to post ExceptionCatch event.
273 LOG(ERROR) << "Unexpected exception handled event in debugger";
279 LOG(ERROR) << "Unexpected WatchedFramePop event in debugger";
295 static bool IsListeningTo(instrumentation::Instrumentation::InstrumentationEvent event)
297 return (Dbg::GetInstrumentationEvents() & event) != 0;
336 // Instrumentation event reference counters.
593 // Post VM_DEATH event before the JDWP connection is closed (either by the JDWP thread or the
727 // to us again while no event has been requested yet.
3240 VLOG(jdwp) << StringPrintf("Add debugger as listener for instrumentation event 0x%x",
3246 VLOG(jdwp) << StringPrintf("Remove debugger as listener for instrumentation event 0x%x",
3292 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
3295 VLOG(jdwp) << StringPrintf("Queue request #%zd to start listening to instrumentation event 0x%x",
3305 CHECK(counter != nullptr) << StringPrintf("No counter for instrumentation event 0x%x",
3309 VLOG(jdwp) << StringPrintf("Queue request #%zd to stop listening to instrumentation event 0x%x",
3419 // another event.
4007 // Thread is not suspended by an event so it cannot invoke a method.
4008 LOG(ERROR) << "InvokeMethod request for thread not stopped by event: " << *targetThread;
4015 * the debugger for an event or by the runtime for GC), it will remain suspended before
4127 VLOG(jdwp) << " Resuming event thread only";
4137 CHECK_NE(self, GetDebugThread()) << "This must be called by the event thread";
4290 // Attach the reply to DebugInvokeReq so it can be sent to the debugger when the event thread
4317 CHECK_NE(Thread::Current(), GetDebugThread()) << "This must be called by the event thread";
4474 jint event = connect ? 1 /*DdmServer.CONNECTED*/ : 2 /*DdmServer.DISCONNECTED*/;
4477 event);
4479 LOG(ERROR) << "DdmServer.broadcast " << event << " failed";