Home | History | Annotate | Download | only in quick

Lines Matching full:exception

26 // Deliver an exception that's pending on thread helping set up a callee save frame on the way.
33 // Called by generated call to throw an exception.
34 extern "C" void artDeliverExceptionFromCode(mirror::Throwable* exception, Thread* self,
38 * exception may be NULL, in which case this routine should
42 * exception_ in thread and delivering the exception.
46 if (exception == NULL) {
48 "throw with null exception");
50 self->SetException(throw_location, exception);
55 // Called by generated call to throw a NPE exception.
65 // Called by generated call to throw an arithmetic divide by zero exception.
74 // Called by generated call to throw an array index out of bounds exception.