Home
last modified time | relevance | path

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

/dalvik/libnativehelper/
DJNIHelp.c41 jclass exceptionClass; in jniThrowException() local
43 exceptionClass = (*env)->FindClass(env, className); in jniThrowException()
44 if (exceptionClass == NULL) { in jniThrowException()
50 if ((*env)->ThrowNew(env, exceptionClass, msg) != JNI_OK) { in jniThrowException()
/dalvik/dx/src/com/android/dx/cf/code/
DByteCatchList.java89 CstType exceptionClass) { in set() argument
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass)); in set()
235 private final CstType exceptionClass; field in ByteCatchList.Item
249 CstType exceptionClass) { in Item() argument
265 this.exceptionClass = exceptionClass; in Item()
303 return (exceptionClass != null) ? in getExceptionClass()
304 exceptionClass : CstType.OBJECT; in getExceptionClass()
DFrame.java396 public Frame makeExceptionHandlerStartFrame(CstType exceptionClass) { in makeExceptionHandlerStartFrame() argument
400 newStack.push(exceptionClass); in makeExceptionHandlerStartFrame()
DRopper.java804 CstType exceptionClass = one.getExceptionClass(); in processBlock() local
807 catchesAny |= (exceptionClass == CstType.OBJECT); in processBlock()
809 Frame f = frame.makeExceptionHandlerStartFrame(exceptionClass); in processBlock()
827 catchTypes[targ] = exceptionClass.getClassType(); in processBlock()
828 } else if (already != exceptionClass.getClassType()) { in processBlock()
/dalvik/vm/
DException.h40 void dvmThrowChainedExceptionByClass(ClassObject* exceptionClass,
42 INLINE void dvmThrowExceptionByClass(ClassObject* exceptionClass, in dvmThrowExceptionByClass() argument
45 dvmThrowChainedExceptionByClass(exceptionClass, msg, NULL); in dvmThrowExceptionByClass()
65 void dvmThrowExceptionByClassWithClassMessage(ClassObject* exceptionClass,
DException.c328 void dvmThrowExceptionByClassWithClassMessage(ClassObject* exceptionClass, in dvmThrowExceptionByClassWithClassMessage() argument
333 dvmThrowExceptionByClass(exceptionClass, message); in dvmThrowExceptionByClassWithClassMessage()
/dalvik/dx/src/com/android/dx/command/dump/
DBlockDumper.java262 CstType exceptionClass = one.getExceptionClass(); in regularDump() local
265 ((exceptionClass == CstType.OBJECT) ? "<any>" : in regularDump()
266 exceptionClass.toHuman()) + " -> " + in regularDump()