/dalvik/vm/ |
Exception.h | 41 void dvmThrowChainedException(ClassObject* exceptionClass, 43 INLINE void dvmThrowException(ClassObject* exceptionClass, 46 dvmThrowChainedException(exceptionClass, msg, NULL); 52 void dvmThrowExceptionFmtV(ClassObject* exceptionClass, 54 void dvmThrowExceptionFmt(ClassObject* exceptionClass, 60 INLINE void dvmThrowExceptionFmt(ClassObject* exceptionClass, 65 dvmThrowExceptionFmtV(exceptionClass, fmt, args); 75 ClassObject* exceptionClass, const char* messageDescriptor, 83 ClassObject* exceptionClass, const char* messageDescriptor) 85 dvmThrowChainedExceptionWithClassMessage(exceptionClass, [all...] |
Exception.cpp | 102 void dvmThrowExceptionFmtV(ClassObject* exceptionClass, 108 dvmThrowChainedException(exceptionClass, msgBuf, NULL); 188 ClassObject* exceptionClass, const char* messageDescriptor, 193 dvmThrowChainedException(exceptionClass, message, cause); [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/ |
ByteCatchList.java | 85 * @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; 245 * @param exceptionClass {@code null-ok;} the exception class or 249 CstType exceptionClass) { 265 this.exceptionClass = exceptionClass; 303 return (exceptionClass != null) ? 304 exceptionClass : CstType.OBJECT [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
ByteCatchList.java | 85 * @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; 245 * @param exceptionClass {@code null-ok;} the exception class or 249 CstType exceptionClass) { 265 this.exceptionClass = exceptionClass; 303 return (exceptionClass != null) ? 304 exceptionClass : CstType.OBJECT [all...] |
Frame.java | 393 * @param exceptionClass exception that the handler block will handle 396 public Frame makeExceptionHandlerStartFrame(CstType exceptionClass) { 400 newStack.push(exceptionClass);
|
Ropper.java | 808 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()) { [all...] |
/frameworks/base/core/jni/ |
android_database_SQLiteDatabase.cpp | 558 const char* exceptionClass; 561 exceptionClass = "android/database/sqlite/SQLiteDiskIOException"; 565 exceptionClass = "android/database/sqlite/SQLiteDatabaseCorruptException"; 568 exceptionClass = "android/database/sqlite/SQLiteConstraintException"; 571 exceptionClass = "android/database/sqlite/SQLiteAbortException"; 574 exceptionClass = "android/database/sqlite/SQLiteDoneException"; 577 exceptionClass = "android/database/sqlite/SQLiteFullException"; 580 exceptionClass = "android/database/sqlite/SQLiteMisuseException"; 583 exceptionClass = "android/database/sqlite/SQLiteAccessPermException"; 586 exceptionClass = "android/database/sqlite/SQLiteDatabaseLockedException" [all...] |
/dalvik/vm/native/ |
InternalNative.cpp | 156 ClassObject* exceptionClass = NULL; 158 exceptionClass = gDvm.exNullPointerException; 160 exceptionClass = gDvm.exIllegalArgumentException; 163 if (exceptionClass == NULL) { 169 dvmThrowExceptionFmt(exceptionClass, "expected receiver of type %s, but got %s",
|
/libcore/luni/src/main/native/ |
java_util_regex_Pattern.cpp | 69 jclass exceptionClass = JniConstants::patternSyntaxExceptionClass; 70 jobject exception = env->NewObject(exceptionClass, method, message, pattern, error.offset);
|
libcore_io_Posix.cpp | 106 static void throwException(JNIEnv* env, jclass exceptionClass, jmethodID ctor3, jmethodID ctor2, 123 exception = env->NewObject(exceptionClass, ctor3, detailMessage.get(), error, cause); 125 exception = env->NewObject(exceptionClass, ctor2, detailMessage.get(), error); [all...] |
/dalvik/libnativehelper/ |
JNIHelp.cpp | 96 scoped_local_ref<jclass> exceptionClass(env, (*env)->GetObjectClass(e, exception)); // can't fail 98 (*env)->GetObjectClass(e, exceptionClass.get())); // java.lang.Class, can't fail 102 (jstring) (*env)->CallObjectMethod(e, exceptionClass.get(), classGetNameMethod)); 115 (*env)->GetMethodID(e, exceptionClass.get(), "getMessage", "()Ljava/lang/String;"); 181 scoped_local_ref<jclass> exceptionClass(env, (*env)->GetObjectClass(e, exception)); // can't fail 183 (*env)->GetMethodID(e, exceptionClass.get(), "printStackTrace", "(Ljava/io/PrintWriter;)V"); 221 scoped_local_ref<jclass> exceptionClass(env, findClass(env, className)); 222 if (exceptionClass.get() == NULL) { 228 if ((*env)->ThrowNew(e, exceptionClass.get(), msg) != JNI_OK) {
|
/dalvik/dx/src/com/android/dx/command/dump/ |
BlockDumper.java | 260 CstType exceptionClass = one.getExceptionClass(); 263 ((exceptionClass == CstType.OBJECT) ? "<any>" : 264 exceptionClass.toHuman()) + " -> " +
|
/dalvik/vm/interp/ |
Interp.cpp | [all...] |
/frameworks/compile/libbcc/runtime/lib/ |
gcc_personality_v0.c | 187 uint64_t exceptionClass, struct _Unwind_Exception* exceptionObject,
|
/external/llvm/examples/ExceptionDemo/ |
ExceptionDemo.cpp | 518 /// @param exceptionClass exception class (_Unwind_Exception::exception_class) 526 uint64_t exceptionClass, 532 (exceptionClass != ourBaseExceptionClass)) 605 /// @param exceptionClass exception class (_Unwind_Exception::exception_class) 613 uint64_t exceptionClass, 681 if (exceptionClass != ourBaseExceptionClass) { 720 exceptionClass, 791 /// @param exceptionClass exception class (_Unwind_Exception::exception_class) 798 uint64_t exceptionClass, 826 exceptionClass, [all...] |
/external/doclava/src/com/google/doclava/ |
MethodInfo.java | 638 ClassInfo exceptionClass = new ClassInfo(exec); 640 mThrownExceptions.add(exceptionClass);
|
/prebuilt/sdk/tools/lib/ |
dx.jar | |