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

1 2

  /external/libunwind/src/unwind/
unwind-internal.h 65 uint64_t exception_class = exception_object->exception_class; local
100 reason = (*stop) (_U_VERSION, actions, exception_class,
133 reason = (*personality) (_U_VERSION, actions, exception_class,
RaiseException.c 32 uint64_t exception_class = exception_object->exception_class; local
73 exception_class, exception_object,
  /art/runtime/jni/
jni_internal.h 33 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause);
jni_internal_test.cc 61 void ExpectException(jclass exception_class) {
64 << mirror::Class::PrettyDescriptor(soa.Decode<mirror::Class>(exception_class));
68 EXPECT_TRUE(env_->IsInstanceOf(exception, exception_class));
2213 jclass exception_class = env_->FindClass("java\/lang\/RuntimeException"); local
2235 jclass exception_class = env_->FindClass("java\/lang\/RuntimeException"); local
    [all...]
jni_internal.cc 559 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause)
583 jmethodID mid = env->GetMethodID(exception_class, "<init>", signature);
587 << mirror::Class::PrettyClass(soa.Decode<mirror::Class>(exception_class));
592 env, reinterpret_cast<jthrowable>(env->NewObjectA(exception_class, mid, args)));
788 ScopedLocalRef<jclass> exception_class(env, env->GetObjectClass(exception.get()));
789 jmethodID mid = env->GetMethodID(exception_class.get(), "printStackTrace", "()V");
    [all...]
  /art/test/986-native-method-bind/
native_bind.cc 66 ScopedLocalRef<jclass> exception_class(env, env->FindClass("java/lang/Exception"));
67 env->ThrowNew(exception_class.get(), "dladdr failure!");
89 ScopedLocalRef<jclass> exception_class(env, env->FindClass("java/lang/Exception"));
90 env->ThrowNew(exception_class.get(), "dlsym failure!");
  /external/libunwind/include/
unwind.h 73 /* The C++ ABI requires exception_class, private_1, and private_2 to
75 double-word-aligned. Please note that exception_class stays 64-bit
79 uint64_t exception_class; member in struct:_Unwind_Exception
  /external/tensorflow/tensorflow/python/data/kernel_tests/
test_base.py 194 exception_class,
205 repr(exception_class))
206 except exception_class as e:
211 with self.assertRaisesRegexp(exception_class,
  /external/libunwind_llvm/src/
Unwind-seh.cpp 56 if (exc->exception_class != kSEHExceptionClass)
111 exc->exception_class = kSEHExceptionClass;
136 (void *)pers, action, exc->exception_class,
138 urc = pers(1, action, exc->exception_class, exc, ctx);
277 (*stop)(1, action, exception_object->exception_class, exception_object,
297 (*p)(1, action, exception_object->exception_class, exception_object,
333 (*stop)(1, lastAction, exception_object->exception_class, exception_object,
Unwind-sjlj.c 134 1, _UA_SEARCH_PHASE, exception_object->exception_class,
195 (*c->personality)(1, action, exception_object->exception_class,
255 (*stop)(1, action, exception_object->exception_class, exception_object,
274 (*p)(1, action, exception_object->exception_class, exception_object,
310 (*stop)(1, lastAction, exception_object->exception_class, exception_object,
UnwindLevel1.c 95 (*p)(1, _UA_SEARCH_PHASE, exception_object->exception_class,
192 (*p)(1, action, exception_object->exception_class, exception_object,
276 (*stop)(1, action, exception_object->exception_class, exception_object,
296 (*p)(1, action, exception_object->exception_class, exception_object,
332 (*stop)(1, lastAction, exception_object->exception_class, exception_object,
UnwindLevel1-gcc-ext.c 121 ex.exception_class = 0x434C4E47554E5700; // CLNGUNW\0
  /external/libunwind_llvm/include/
unwind.h 75 uint64_t exception_class; member in struct:_Unwind_Control_Block
124 uint64_t exception_class; member in struct:_Unwind_Exception
  /art/runtime/entrypoints/
entrypoint_utils.cc 146 ObjPtr<mirror::Class> exception_class = exception->GetClass(); local
149 declares_exception = declared_exception->IsAssignableFrom(exception_class);
  /external/libcxxabi/src/
cxa_exception.cpp 83 ::memcpy(&unwind_exception->exception_class, &newValue, sizeof(newValue));
97 // On x86 and some ARM unwinders, unwind_exception->exception_class is
102 ::memcpy(&exClass, &unwind_exception->exception_class, sizeof(exClass));
245 * Set the exception_class field in the unwind header. This is a 64-bit value
  /external/clang/lib/Headers/
unwind.h 115 _Unwind_Exception_Class exception_class; member in struct:_Unwind_Exception
  /art/runtime/
reflection.cc 500 jclass exception_class = soa.Env()->FindClass("java/lang/reflect/InvocationTargetException"); local
501 if (exception_class == nullptr) {
505 jmethodID mid = soa.Env()->GetMethodID(exception_class, "<init>", "(Ljava/lang/Throwable;)V");
507 jobject exception_instance = soa.Env()->NewObject(exception_class, mid, th.get());
    [all...]
thread.cc     [all...]
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 117 uint64_t exception_class; member in struct:_Unwind_Exception
334 (expToDelete->exception_class == ourBaseExceptionClass)) {
365 (ret->unwindException).exception_class = ourBaseExceptionClass;
546 /// @param exceptionClass exception class (_Unwind_Exception::exception_class)
640 /// @param exceptionClass exception class (_Unwind_Exception::exception_class)
824 /// @param exceptionClass exception class (_Unwind_Exception::exception_class)
    [all...]
  /external/swiftshader/third_party/LLVM/examples/ExceptionDemo/
ExceptionDemo.cpp 120 uint64_t exception_class; member in struct:_Unwind_Exception
339 (expToDelete->exception_class == ourBaseExceptionClass)) {
370 (ret->unwindException).exception_class = ourBaseExceptionClass;
527 /// @param exceptionClass exception class (_Unwind_Exception::exception_class)
614 /// @param exceptionClass exception class (_Unwind_Exception::exception_class)
800 /// @param exceptionClass exception class (_Unwind_Exception::exception_class)
    [all...]
  /external/tensorflow/tensorflow/python/eager/
pywrap_tfe_src.cc 699 PyObject* exception_class GUARDED_BY(exception_class_mutex) = nullptr;
748 if (exception_class != nullptr) {
749 Py_DECREF(exception_class);
752 exception_class = nullptr;
760 exception_class = e;
834 if (exception_class != nullptr) {
844 PyErr_SetObject(exception_class, val.get());
861 if (exception_class != nullptr) {
863 PyErr_SetObject(exception_class, val.get());
    [all...]
  /external/grpc-grpc/src/python/grpcio/grpc/beta/
_client_adaptations.py 62 exception_class = face.AbortionError if pair is None else pair[1]
63 return exception_class(rpc_error_call.initial_metadata(),
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 292 (expToDelete->exception_class == ourBaseExceptionClass)) {
323 (ret->unwindException).exception_class = ourBaseExceptionClass;
497 /// @param exceptionClass exception class (_Unwind_Exception::exception_class)
591 /// @param exceptionClass exception class (_Unwind_Exception::exception_class)
774 /// @param exceptionClass exception class (_Unwind_Exception::exception_class)
    [all...]
  /art/openjdkjvmti/
events.cc     [all...]
  /external/flatbuffers/tests/
py_test.py 46 def assertRaises(test_case, fn, exception_class):
55 test_case.assertTrue(isinstance(exc, exception_class))
    [all...]

Completed in 977 milliseconds

1 2