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

/dalvik/vm/
H A DException.h41 void dvmThrowChainedException(ClassObject* exceptionClass,
43 INLINE void dvmThrowException(ClassObject* exceptionClass, argument
46 dvmThrowChainedException(exceptionClass, msg, NULL);
52 void dvmThrowExceptionFmtV(ClassObject* exceptionClass,
54 void dvmThrowExceptionFmt(ClassObject* exceptionClass,
60 INLINE void dvmThrowExceptionFmt(ClassObject* exceptionClass, argument
65 dvmThrowExceptionFmtV(exceptionClass, fmt, args);
75 ClassObject* exceptionClass, const char* messageDescriptor,
83 ClassObject* exceptionClass, const char* messageDescriptor)
85 dvmThrowChainedExceptionWithClassMessage(exceptionClass,
82 dvmThrowExceptionWithClassMessage( ClassObject* exceptionClass, const char* messageDescriptor) argument
[all...]
H A DException.cpp102 void dvmThrowExceptionFmtV(ClassObject* exceptionClass, argument
108 dvmThrowChainedException(exceptionClass, msgBuf, NULL);
188 ClassObject* exceptionClass, const char* messageDescriptor,
193 dvmThrowChainedException(exceptionClass, message, cause);
1189 static void throwTypeError(ClassObject* exceptionClass, const char* fmt, argument
1194 dvmThrowExceptionFmt(exceptionClass, fmt, actualClassName.c_str(), desiredClassName.c_str());
187 dvmThrowChainedExceptionWithClassMessage( ClassObject* exceptionClass, const char* messageDescriptor, Object* cause) argument
/dalvik/dexgen/src/com/android/dexgen/rop/
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...]
/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.java822 CstType exceptionClass = one.getExceptionClass();
825 catchesAny |= (exceptionClass == CstType.OBJECT);
827 Frame f = frame.makeExceptionHandlerStartFrame(exceptionClass);
845 catchTypes[targ] = exceptionClass.getClassType();
846 } else if (already != exceptionClass.getClassType()) {
/dalvik/vm/native/
H A DInternalNative.cpp156 ClassObject* exceptionClass = NULL; local
158 exceptionClass = gDvm.exNullPointerException;
160 exceptionClass = gDvm.exIllegalArgumentException;
163 if (exceptionClass == NULL) {
169 dvmThrowExceptionFmt(exceptionClass, "expected receiver of type %s, but got %s",
/dalvik/dx/src/com/android/dx/command/dump/
H A DBlockDumper.java258 CstType exceptionClass = one.getExceptionClass();
261 ((exceptionClass == CstType.OBJECT) ? "<any>" :
262 exceptionClass.toHuman()) + " -> " +
/dalvik/vm/interp/
H A DInterp.cpp1394 ClassObject* exceptionClass = gDvm.exVerifyError; local
1399 exceptionClass = gDvm.exNoClassDefFoundError;
1403 exceptionClass = gDvm.exNoSuchFieldError;
1407 exceptionClass = gDvm.exNoSuchMethodError;
1411 exceptionClass = gDvm.exIllegalAccessError;
1416 exceptionClass = gDvm.exIllegalAccessError;
1421 exceptionClass = gDvm.exIllegalAccessError;
1426 exceptionClass = gDvm.exIncompatibleClassChangeError;
1430 exceptionClass = gDvm.exInstantiationError;
1446 dvmThrowException(exceptionClass, ms
[all...]
/dalvik/vm/compiler/codegen/x86/
H A DLowerHelper.cpp2488 typedef void (*vmHelper)(ClassObject* exceptionClass, const char*);
2503 typedef void (*vmHelper)(ClassObject* exceptionClass, const char*);

Completed in 140 milliseconds