Searched refs:catchLocation (Results 1 – 8 of 8) sorted by relevance
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
D | ExceptionCaughtTest.java | 235 Location catchLocation = exceptionEvent.getCatchLocation(); in runCatchLocationTest() local 236 printTestLog("returnedExceptionLoc = " + catchLocation); in runCatchLocationTest() 237 assertNotNull("Returned exception catch location is null,", catchLocation); in runCatchLocationTest() 243 assertFalse("Same throw and catch locations", catchLocation.equals(topFrameLoc)); in runCatchLocationTest() 250 if (debuggeeClassID != catchLocation.classID || in runCatchLocationTest() 251 debuggeeThrowMethodID != catchLocation.methodID) { in runCatchLocationTest() 258 builder.append(dumpLocation(catchLocation)); in runCatchLocationTest()
|
D | ExceptionUncaughtTest.java | 154 Location catchLocation = exceptionEvent.getCatchLocation(); in testExceptionUncaughtEvent_CatchLocation() local 155 printTestLog("returnedExceptionLoc = " + catchLocation); in testExceptionUncaughtEvent_CatchLocation() 156 assertNotNull("Returned exception catch location is null,", catchLocation); in testExceptionUncaughtEvent_CatchLocation() 159 if (!isNullLocation(catchLocation)) { in testExceptionUncaughtEvent_CatchLocation() 160 fail("Invalid catch location: expected null but got " + dumpLocation(catchLocation)); in testExceptionUncaughtEvent_CatchLocation()
|
D | BreakpointOnCatchTest.java | 68 Location catchLocation = ((Event_EXCEPTION) parsedEvents[0]).getCatchLocation(); in testBreakpointOnCatch() local 69 assertEquals("Invalid class ID:", classID, catchLocation.classID); in testBreakpointOnCatch() 70 assertEquals("Invalid method ID:", methodID, catchLocation.methodID); in testBreakpointOnCatch() 76 int requestID = requestBreakpointEvent(catchLocation); in testBreakpointOnCatch()
|
D | ExceptionWithLocationTest.java | 84 Location catchLocation = eventException.getCatchLocation(); in checkEvent() local 85 assertNotNull("Incorrect catch location", catchLocation); in checkEvent()
|
/external/oj-libjdwp/src/share/classes/com/sun/jdi/event/ |
D | ExceptionEvent.java | 94 public Location catchLocation(); in catchLocation() method
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
D | ParsedEvent.java | 354 private Location catchLocation; field in ParsedEvent.Event_EXCEPTION 365 catchLocation = packet.getNextValueAsLocation(); in Event_EXCEPTION() 372 return catchLocation; in getCatchLocation()
|
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | EventSetImpl.java | 407 private Location catchLocation; field in EventSetImpl.ExceptionEventImpl 412 this.catchLocation = evt.catchLocation; in ExceptionEventImpl() 419 public Location catchLocation() { in catchLocation() method in EventSetImpl.ExceptionEventImpl 420 return catchLocation; in catchLocation()
|
/external/oj-libjdwp/make/data/jdwp/ |
D | jdwp.spec | 2880 (location catchLocation
|