Home
last modified time | relevance | path

Searched refs:exceptionEvent (Results 1 – 7 of 7) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DExceptionUncaughtTest.java53 ParsedEvent.Event_EXCEPTION exceptionEvent = requestAndReceiveExceptionEvent(); in testExceptionUncaughtEvent_ExceptionObject() local
54 TaggedObject returnedException = exceptionEvent.getException(); in testExceptionUncaughtEvent_ExceptionObject()
91 ParsedEvent.Event_EXCEPTION exceptionEvent = requestAndReceiveExceptionEvent(); in testExceptionUncaughtEvent_ThrowLocation() local
92 long returnedThread = exceptionEvent.getThreadID(); in testExceptionUncaughtEvent_ThrowLocation()
93 Location throwLocation = exceptionEvent.getLocation(); in testExceptionUncaughtEvent_ThrowLocation()
145 ParsedEvent.Event_EXCEPTION exceptionEvent = requestAndReceiveExceptionEvent(); in testExceptionUncaughtEvent_CatchLocation() local
146 long returnedThread = exceptionEvent.getThreadID(); in testExceptionUncaughtEvent_CatchLocation()
153 Location catchLocation = exceptionEvent.getCatchLocation(); in testExceptionUncaughtEvent_CatchLocation()
DExceptionCaughtTest.java147 ParsedEvent.Event_EXCEPTION exceptionEvent = requestAndReceiveExceptionEvent(fromNative); in runExceptionObjectTest() local
148 TaggedObject returnedException = exceptionEvent.getException(); in runExceptionObjectTest()
177 ParsedEvent.Event_EXCEPTION exceptionEvent = requestAndReceiveExceptionEvent(fromNative); in runThrowLocationTest() local
178 long returnedThread = exceptionEvent.getThreadID(); in runThrowLocationTest()
179 Location throwLocation = exceptionEvent.getLocation(); in runThrowLocationTest()
226 ParsedEvent.Event_EXCEPTION exceptionEvent = requestAndReceiveExceptionEvent(fromNative); in runCatchLocationTest() local
227 long returnedThread = exceptionEvent.getThreadID(); in runCatchLocationTest()
234 Location catchLocation = exceptionEvent.getCatchLocation(); in runCatchLocationTest()
DExceptionBaseTest.java55 ParsedEvent.Event_EXCEPTION exceptionEvent = (ParsedEvent.Event_EXCEPTION) parsedEvents[0]; in receiveAndCheckExceptionEvent() local
57 long eventThreadID = exceptionEvent.getThreadID(); in receiveAndCheckExceptionEvent()
64 return exceptionEvent; in receiveAndCheckExceptionEvent()
DCombinedExceptionEventsTest.java136 ParsedEvent.Event_EXCEPTION exceptionEvent = (ParsedEvent.Event_EXCEPTION) parsedEvent; in runCombinedExceptionEventsTest() local
138 long currentEventThreadID = exceptionEvent.getThreadID(); in runCombinedExceptionEventsTest()
139 long currentExceptionObjectID = exceptionEvent in runCombinedExceptionEventsTest()
/external/lldb/examples/python/
Dpytracer.py157 def exceptionEvent(self,frame,exception,value,traceback): member in TracerClass
189 exception_retval = tracer_impl.exceptionEvent(FrameFancy(frame),ExceptionFancy(extb,exty,exva))
220 def exceptionEvent(self,frame,exception): member in LoggingTracer
291 def exceptionEvent(self,frame,exception): member in LLDBAwareTracer
/external/nist-sip/java/javax/sip/
DSipListener.java5 void processIOException(IOExceptionEvent exceptionEvent); in processIOException() argument
/external/nist-sip/java/gov/nist/javax/sip/stack/
DSIPTransaction.java1123 IOExceptionEvent exceptionEvent = new IOExceptionEvent(this, host, in raiseIOExceptionEvent() local
1125 getSipProvider().handleEvent(exceptionEvent, this); in raiseIOExceptionEvent()