HomeSort by relevance Sort by last modified time
    Searched refs:exceptionClass (Results 1 - 25 of 34) sorted by null

1 2

  /frameworks/base/core/jni/
android_database_SQLiteCommon.cpp 63 const char* exceptionClass;
66 exceptionClass = "android/database/sqlite/SQLiteDiskIOException";
70 exceptionClass = "android/database/sqlite/SQLiteDatabaseCorruptException";
73 exceptionClass = "android/database/sqlite/SQLiteConstraintException";
76 exceptionClass = "android/database/sqlite/SQLiteAbortException";
79 exceptionClass = "android/database/sqlite/SQLiteDoneException";
83 exceptionClass = "android/database/sqlite/SQLiteFullException";
86 exceptionClass = "android/database/sqlite/SQLiteMisuseException";
89 exceptionClass = "android/database/sqlite/SQLiteAccessPermException";
92 exceptionClass = "android/database/sqlite/SQLiteDatabaseLockedException"
    [all...]
  /libcore/luni/src/main/native/
IcuUtilities.cpp 63 const char* exceptionClass = "java/lang/RuntimeException";
65 exceptionClass = "java/lang/IllegalArgumentException";
67 exceptionClass = "java/lang/ArrayIndexOutOfBoundsException";
69 exceptionClass = "java/lang/UnsupportedOperationException";
71 jniThrowExceptionFmt(env, exceptionClass, "%s failed: %s", function, u_errorName(error));
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 97 static void throwException(JNIEnv* env, jclass exceptionClass, jmethodID ctor3, jmethodID ctor2,
114 exception = env->NewObject(exceptionClass, ctor3, detailMessage.get(), error, cause);
116 exception = env->NewObject(exceptionClass, ctor2, detailMessage.get(), error);
    [all...]
  /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...]
  /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",
  /ndk/sources/cxx-stl/gabi++/src/
helper_func_internal.h 88 uint64_t exceptionClass = unwind_exception->exception_class; \
113 __gxx_personality_v0(int version, _Unwind_Action actions, uint64_t exceptionClass, \
personality.cc 61 bool native_exception = exceptionClass == __gxx_exception_class;
  /libnativehelper/
JNIHelp.cpp 98 scoped_local_ref<jclass> exceptionClass(env, (*env)->GetObjectClass(e, exception)); // can't fail
100 (*env)->GetObjectClass(e, exceptionClass.get())); // java.lang.Class, can't fail
104 (jstring) (*env)->CallObjectMethod(e, exceptionClass.get(), classGetNameMethod));
117 (*env)->GetMethodID(e, exceptionClass.get(), "getMessage", "()Ljava/lang/String;");
183 scoped_local_ref<jclass> exceptionClass(env, (*env)->GetObjectClass(e, exception)); // can't fail
185 (*env)->GetMethodID(e, exceptionClass.get(), "printStackTrace", "(Ljava/io/PrintWriter;)V");
223 scoped_local_ref<jclass> exceptionClass(env, findClass(env, className));
224 if (exceptionClass.get() == NULL) {
230 if ((*env)->ThrowNew(e, exceptionClass.get(), msg) != JNI_OK) {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
JSR166TestCase.java 813 final Class<?> exceptionClass;
815 <T extends Throwable> RunnableShouldThrow(Class<T> exceptionClass) {
816 this.exceptionClass = exceptionClass;
822 threadShouldThrow(exceptionClass.getSimpleName());
824 if (! exceptionClass.isInstance(t))
833 final Class<?> exceptionClass;
835 <T extends Throwable> ThreadShouldThrow(Class<T> exceptionClass) {
836 this.exceptionClass = exceptionClass;
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Futures.java     [all...]
  /ndk/sources/cxx-stl/gabi++/include/
unwind-itanium.h 63 uint64_t exceptionClass,
  /external/compiler-rt/lib/
gcc_personality_v0.c 186 uint64_t exceptionClass, struct _Unwind_Exception* exceptionObject,
190 uint64_t exceptionClass, struct _Unwind_Exception* exceptionObject,
  /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...]
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 520 /// @param exceptionClass exception class (_Unwind_Exception::exception_class)
528 uint64_t exceptionClass,
534 (exceptionClass != ourBaseExceptionClass))
607 /// @param exceptionClass exception class (_Unwind_Exception::exception_class)
615 uint64_t exceptionClass,
681 if (exceptionClass != ourBaseExceptionClass) {
719 exceptionClass,
790 /// @param exceptionClass exception class (_Unwind_Exception::exception_class)
797 uint64_t exceptionClass,
825 exceptionClass,
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractIteratorTester.java 119 PermittedMetaException(Class<? extends RuntimeException> exceptionClass) {
120 this(Collections.singleton(exceptionClass));
  /external/doclava/src/com/google/doclava/
MethodInfo.java 652 ClassInfo exceptionClass = new ClassInfo(exec);
654 mThrownExceptions.add(exceptionClass);
  /dalvik/vm/compiler/codegen/x86/
LowerHelper.cpp     [all...]
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 

Completed in 781 milliseconds

1 2