Home
last modified time | relevance | path

Searched refs:CLASS_PREPARE (Results 1 – 9 of 9) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DClassPrepareTest.java68 …assertEquals("Invalid event kind,", JDWPConstants.EventKind.CLASS_PREPARE, parsedEvents[0].getEven… in testClassPrepareEvent()
69 , JDWPConstants.EventKind.getName(JDWPConstants.EventKind.CLASS_PREPARE) in testClassPrepareEvent()
106 …assertEquals("Invalid event kind,", JDWPConstants.EventKind.CLASS_PREPARE, parsedEvents[0].getEven… in testClassPrepareEventWithoutSourceDebugExtension()
107 , JDWPConstants.EventKind.getName(JDWPConstants.EventKind.CLASS_PREPARE) in testClassPrepareEventWithoutSourceDebugExtension()
174 …assertEquals("Invalid event kind,", JDWPConstants.EventKind.CLASS_PREPARE, parsedEvents[0].getEven… in testClassPrepareEventWithSourceDebugExtension()
175 , JDWPConstants.EventKind.getName(JDWPConstants.EventKind.CLASS_PREPARE) in testClassPrepareEventWithSourceDebugExtension()
DClassPrepare002Test.java61 final byte eventKind = JDWPConstants.EventKind.CLASS_PREPARE; in testClassPrepareCausedByDebugger()
93 .receiveCertainEvent(JDWPConstants.EventKind.CLASS_PREPARE); in testClassPrepareCausedByDebugger()
102 assertEquals(JDWPConstants.EventKind.CLASS_PREPARE, parsedEvent.getEventKind()); in testClassPrepareCausedByDebugger()
127 debuggeeWrapper.vmMirror.clearEvent(JDWPConstants.EventKind.CLASS_PREPARE, in testClassPrepareCausedByDebugger()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DJDWPConstants.java290 public static final byte CLASS_PREPARE = 8; field in JDWPConstants.EventKind
350 case CLASS_PREPARE: in getName()
DParsedEvent.java435 super(suspendPolicy, packet, JDWPConstants.EventKind.CLASS_PREPARE); in Event_CLASS_PREPARE()
708 case JDWPConstants.EventKind.CLASS_PREPARE: { in parseEventPacket()
DVmMirror.java917 return setClassMatchEvent(JDWPConstants.EventKind.CLASS_PREPARE, in setClassPrepared()
929 return setClassOnlyEvent(JDWPConstants.EventKind.CLASS_PREPARE, in setClassPrepared()
943 byte eventKind = JDWPConstants.EventKind.CLASS_PREPARE; in setClassPreparedForSourceNameMatch()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DEventRequestManagerImpl.java349 return JDWP.EventKind.CLASS_PREPARE; in eventCmd()
875 return (List<ClassPrepareRequest>)unmodifiableRequestList(JDWP.EventKind.CLASS_PREPARE); in classPrepareRequests()
DEventSetImpl.java740 case JDWP.EventKind.CLASS_PREPARE: in createEvent()
/external/oj-libjdwp/make/data/jdwp/
Djdwp.spec2949 (Alt ClassPrepare=JDWP.EventKind.CLASS_PREPARE
3154 (Constant CLASS_PREPARE =8 )
/external/oj-libjdwp/src/share/back/
Dutil.c2025 index2jdwp[EI_CLASS_PREPARE -EI_min] = JDWP_EVENT(CLASS_PREPARE); in eventIndexInit()
2075 case JDWP_EVENT(CLASS_PREPARE): in jdwp2EventIndex()