Searched refs:old_exception (Results 1 – 4 of 4) sorted by relevance
749 art::Handle<art::mirror::Throwable> old_exception(hs.NewHandle(self->GetException())); in MethodUnwind() local750 CHECK(!old_exception.IsNull()); in MethodUnwind()761 self->SetException(old_exception.Get()); in MethodUnwind()
1469 old_exception = self.exn_vt_stack[-2]1474 self.push(old_exception)1475 self.push(variables.BuiltinVariable(old_exception.exc_type))
797 Handle<mirror::Throwable> old_exception( in ExceptionDescribe() local801 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()
1449 …199: Fix exception causes all over the codebase by using ``raise new_exception from old_exception``