Home
last modified time | relevance | path

Searched refs:EventThreadLocation (Results 1 – 4 of 4) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DParsedEvent.java104 public static class EventThreadLocation extends EventThread { class in ParsedEvent
114 protected EventThreadLocation(byte suspendPolicy, Packet packet, in EventThreadLocation() method in ParsedEvent.EventThreadLocation
183 public static final class Event_SINGLE_STEP extends EventThreadLocation {
199 public static final class Event_BREAKPOINT extends EventThreadLocation {
215 public static final class Event_METHOD_ENTRY extends EventThreadLocation {
231 public static final class Event_METHOD_EXIT extends EventThreadLocation {
247 public static final class Event_METHOD_EXIT_WITH_RETURN_VALUE extends EventThreadLocation {
350 public static final class Event_EXCEPTION extends EventThreadLocation {
500 public static final class Event_FIELD_ACCESS extends EventThreadLocation {
557 EventThreadLocation {
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
DInstanceOnlyModifierTest.java26 import org.apache.harmony.jpda.tests.framework.jdwp.ParsedEvent.EventThreadLocation;
239 EventThreadLocation eventThread = in testEventWithInstanceOnlyModifier()
240 (EventThreadLocation) waitForEvent(event.eventKind, requestID); in testEventWithInstanceOnlyModifier()
247 private void checkThisObject(EventThreadLocation eventThread, long objectID) { in checkThisObject()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DEventWithExceptionTest.java110 Location eventLocation = ((ParsedEvent.EventThreadLocation) breakpointEvent).getLocation(); in testBreakpoint_BeforeException()
170 Location eventLocation = ((ParsedEvent.EventThreadLocation) breakpointEvent).getLocation(); in testBreakpoint_UponException()
264 Location eventLocation = ((ParsedEvent.EventThreadLocation) singleStepEvent).getLocation(); in runSingleStepTest()
318 ((ParsedEvent.EventThreadLocation) fieldWatchpointEvent).getLocation(); in runFieldWatchpointTest()
376 ((ParsedEvent.EventThreadLocation) methodExitEvent).getLocation(); in runMethodExitTest()
DSingleStepThroughReflectionTest.java29 import org.apache.harmony.jpda.tests.framework.jdwp.ParsedEvent.EventThreadLocation;
121 checkSingleStepEvent((EventThreadLocation) parsedEvent, refTypeID); in testSingleStepIntoThroughReflection()
128 private void checkSingleStepEvent(EventThreadLocation eventThreadLocation, in checkSingleStepEvent()