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

/dalvik/dx/src/com/android/dx/cf/code/
H A DByteCatchList.java85 * @param exceptionClass {@code null-ok;} the exception class or
89 CstType exceptionClass) {
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass));
235 private final CstType exceptionClass; field in class:ByteCatchList.Item
245 * @param exceptionClass {@code null-ok;} the exception class or
249 CstType exceptionClass) {
265 this.exceptionClass = exceptionClass;
303 return (exceptionClass != null) ?
304 exceptionClass
88 set(int n, int startPc, int endPc, int handlerPc, CstType exceptionClass) argument
248 Item(int startPc, int endPc, int handlerPc, CstType exceptionClass) argument
[all...]
H A DFrame.java393 * @param exceptionClass exception that the handler block will handle
396 public Frame makeExceptionHandlerStartFrame(CstType exceptionClass) { argument
400 newStack.push(exceptionClass);
H A DRopper.java808 CstType exceptionClass = one.getExceptionClass();
811 catchesAny |= (exceptionClass == CstType.OBJECT);
813 Frame f = frame.makeExceptionHandlerStartFrame(exceptionClass);
831 catchTypes[targ] = exceptionClass.getClassType();
832 } else if (already != exceptionClass.getClassType()) {
/dalvik/vm/
H A DException.h60 void dvmThrowChainedExceptionByClass(ClassObject* exceptionClass,
62 INLINE void dvmThrowExceptionByClass(ClassObject* exceptionClass, argument
65 dvmThrowChainedExceptionByClass(exceptionClass, msg, NULL);
85 void dvmThrowExceptionByClassWithClassMessage(ClassObject* exceptionClass,
H A DException.c345 void dvmThrowExceptionByClassWithClassMessage(ClassObject* exceptionClass, argument
350 dvmThrowExceptionByClass(exceptionClass, message);
/dalvik/libnativehelper/
H A DJNIHelp.c107 jclass exceptionClass; local
120 exceptionClass = (*env)->FindClass(env, className);
121 if (exceptionClass == NULL) {
127 if ((*env)->ThrowNew(env, exceptionClass, msg) != JNI_OK) {
/dalvik/dx/src/com/android/dx/command/dump/
H A DBlockDumper.java257 CstType exceptionClass = one.getExceptionClass();
260 ((exceptionClass == CstType.OBJECT) ? "<any>" :
261 exceptionClass.toHuman()) + " -> " +

Completed in 222 milliseconds