Searched defs:exceptionClass (Results 1 - 7 of 7) 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/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/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);
/dalvik/vm/interp/
H A DInterp.cpp1396 ClassObject* exceptionClass = gDvm.exVerifyError; local
1401 exceptionClass = gDvm.exNoClassDefFoundError;
1405 exceptionClass = gDvm.exNoSuchFieldError;
1409 exceptionClass = gDvm.exNoSuchMethodError;
1413 exceptionClass = gDvm.exIllegalAccessError;
1418 exceptionClass = gDvm.exIllegalAccessError;
1423 exceptionClass = gDvm.exIllegalAccessError;
1428 exceptionClass = gDvm.exIncompatibleClassChangeError;
1432 exceptionClass = gDvm.exInstantiationError;
1448 dvmThrowException(exceptionClass, ms
[all...]

Completed in 8103 milliseconds