/external/oj-libjdwp/src/share/back/ |
D | eventHelper.c | 129 static void saveEventInfoRefs(JNIEnv *env, EventInfo *evinfo); 130 static void tossEventInfoRefs(JNIEnv *env, EventInfo *evinfo); 281 writeSingleStepEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo) in writeSingleStepEvent() argument 283 (void)outStream_writeObjectRef(env, out, evinfo->thread); in writeSingleStepEvent() 284 writeCodeLocation(out, evinfo->clazz, evinfo->method, evinfo->location); in writeSingleStepEvent() 288 writeBreakpointEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo) in writeBreakpointEvent() argument 290 (void)outStream_writeObjectRef(env, out, evinfo->thread); in writeBreakpointEvent() 291 writeCodeLocation(out, evinfo->clazz, evinfo->method, evinfo->location); in writeBreakpointEvent() 295 writeFieldAccessEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo) in writeFieldAccessEvent() argument 299 fieldClassTag = referenceTypeTag(evinfo->u.field_access.field_clazz); in writeFieldAccessEvent() [all …]
|
D | standardHandlers.c | 40 handleClassPrepare(JNIEnv *env, EventInfo *evinfo, in handleClassPrepare() argument 44 jthread thread = evinfo->thread; in handleClassPrepare() 69 evinfo->thread = NULL; in handleClassPrepare() 74 eventHelper_recordEvent(evinfo, node->handlerID, in handleClassPrepare() 79 handleGarbageCollectionFinish(JNIEnv *env, EventInfo *evinfo, in handleGarbageCollectionFinish() argument 87 handleFrameEvent(JNIEnv *env, EventInfo *evinfo, in handleFrameEvent() argument 107 (gdata->jvmti, evinfo->thread, fnum, &method, &location); in handleFrameEvent() 111 returnValue = evinfo->u.method_exit.return_value; in handleFrameEvent() 115 evinfo->ei, in handleFrameEvent() 116 evinfo->thread, in handleFrameEvent() [all …]
|
D | eventFilter.c | 300 eventInstance(EventInfo *evinfo) in eventInstance() argument 316 switch (evinfo->ei) { in eventInstance() 328 thread = evinfo->thread; in eventInstance() 329 method = evinfo->method; in eventInstance() 333 object = evinfo->object; in eventInstance() 376 EventInfo *evinfo, in eventFilterRestricted_passesFilter() argument 387 thread = evinfo->thread; in eventFilterRestricted_passesFilter() 388 clazz = evinfo->clazz; in eventFilterRestricted_passesFilter() 389 method = evinfo->method; in eventFilterRestricted_passesFilter() 394 if ((evinfo->ei != EI_CLASS_PREPARE) && in eventFilterRestricted_passesFilter() [all …]
|
D | eventHandler.c | 544 event_callback(JNIEnv *env, EventInfo *evinfo) in event_callback() argument 551 LOG_MISC(("event_callback(): ei=%s", eventText(evinfo->ei))); in event_callback() 552 log_debugee_location("event_callback()", evinfo->thread, evinfo->method, evinfo->location); in event_callback() 598 thread = evinfo->thread; in event_callback() 608 evinfo->ei, thread, currentException); in event_callback() 644 if (evinfo->ei == EI_CLASS_PREPARE) { in event_callback() 645 classTrack_addPreparedClass(env, evinfo->clazz); in event_callback() 648 node = getHandlerChain(evinfo->ei)->first; in event_callback() 649 classname = getClassname(evinfo->clazz); in event_callback() 657 evinfo, node, in event_callback() [all …]
|
D | stepControl.c | 261 handleFramePopEvent(JNIEnv *env, EventInfo *evinfo, in handleFramePopEvent() argument 266 jthread thread = evinfo->thread; in handleFramePopEvent() 364 handleExceptionCatchEvent(JNIEnv *env, EventInfo *evinfo, in handleExceptionCatchEvent() argument 369 jthread thread = evinfo->thread; in handleExceptionCatchEvent() 431 handleMethodEnterEvent(JNIEnv *env, EventInfo *evinfo, in handleMethodEnterEvent() argument 438 thread = evinfo->thread; in handleMethodEnterEvent() 454 clazz = evinfo->clazz; in handleMethodEnterEvent() 455 method = evinfo->method; in handleMethodEnterEvent()
|
D | eventFilterRestricted.h | 42 EventInfo *evinfo,
|
D | eventHelper.h | 36 void eventHelper_recordEvent(EventInfo *evinfo, jint id,
|
D | eventHandler.h | 43 EventInfo *evinfo,
|
D | threadControl.c | 654 handleAppResumeCompletion(JNIEnv *env, EventInfo *evinfo, in handleAppResumeCompletion() argument 661 thread = evinfo->thread; in handleAppResumeCompletion() 669 if (evinfo->ei == EI_FRAME_POP) { in handleAppResumeCompletion() 738 handleAppResumeBreakpoint(JNIEnv *env, EventInfo *evinfo, in handleAppResumeBreakpoint() argument 742 jthread resumer = evinfo->thread; in handleAppResumeBreakpoint()
|