Home
last modified time | relevance | path

Searched refs:old_exception (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/art/openjdkjvmti/
H A Devents.cc749 art::Handle<art::mirror::Throwable> old_exception(hs.NewHandle(self->GetException())); in MethodUnwind() local
750 CHECK(!old_exception.IsNull()); in MethodUnwind()
761 self->SetException(old_exception.Get()); in MethodUnwind()
/aosp_15_r20/external/pytorch/torch/_dynamo/
H A Dsymbolic_convert.py1469 old_exception = self.exn_vt_stack[-2]
1474 self.push(old_exception)
1475 self.push(variables.BuiltinVariable(old_exception.exc_type))
/aosp_15_r20/art/runtime/jni/
H A Djni_internal.cc797 Handle<mirror::Throwable> old_exception( in ExceptionDescribe() local
801 soa.AddLocalReference<jthrowable>(old_exception.Get())); in ExceptionDescribe()
806 << mirror::Object::PrettyTypeOf(old_exception.Get()); in ExceptionDescribe()
815 soa.Self()->SetException(old_exception.Get()); in ExceptionDescribe()
/aosp_15_r20/external/python/setuptools/
DCHANGES.rst1449 …199: Fix exception causes all over the codebase by using ``raise new_exception from old_exception``