Home | History | Annotate | Download | only in quick

Lines Matching refs:exception

25 // Deliver an exception that's pending on thread helping set up a callee save frame on the way.
32 // Called by generated call to throw an exception.
33 extern "C" NO_RETURN void artDeliverExceptionFromCode(mirror::Throwable* exception, Thread* self)
36 * exception may be null, in which case this routine should
40 * exception_ in thread and delivering the exception.
43 if (exception == nullptr) {
44 self->ThrowNewException("Ljava/lang/NullPointerException;", "throw with null exception");
46 self->SetException(exception);
51 // Called by generated call to throw a NPE exception.
61 // Called by generated call to throw an arithmetic divide by zero exception.
69 // Called by generated call to throw an array index out of bounds exception.