Lines Matching refs:self

26 extern "C" NO_RETURN void artDeliverPendingExceptionFromCode(Thread* self)
28 ScopedQuickEntrypointChecks sqec(self);
29 self->QuickDeliverException();
33 extern "C" NO_RETURN void artDeliverExceptionFromCode(mirror::Throwable* exception, Thread* self)
42 ScopedQuickEntrypointChecks sqec(self);
44 self->ThrowNewException("Ljava/lang/NullPointerException;", "throw with null exception");
46 self->SetException(exception);
48 self->QuickDeliverException();
52 extern "C" NO_RETURN void artThrowNullPointerExceptionFromCode(Thread* self)
54 ScopedQuickEntrypointChecks sqec(self);
55 self->NoteSignalBeingHandled();
57 self->NoteSignalHandlerDone();
58 self->QuickDeliverException();
62 extern "C" NO_RETURN void artThrowDivZeroFromCode(Thread* self)
64 ScopedQuickEntrypointChecks sqec(self);
66 self->QuickDeliverException();
70 extern "C" NO_RETURN void artThrowArrayBoundsFromCode(int index, int length, Thread* self)
72 ScopedQuickEntrypointChecks sqec(self);
74 self->QuickDeliverException();
77 extern "C" NO_RETURN void artThrowStackOverflowFromCode(Thread* self)
79 ScopedQuickEntrypointChecks sqec(self);
80 self->NoteSignalBeingHandled();
81 ThrowStackOverflowError(self);
82 self->NoteSignalHandlerDone();
83 self->QuickDeliverException();
86 extern "C" NO_RETURN void artThrowNoSuchMethodFromCode(int32_t method_idx, Thread* self)
88 ScopedQuickEntrypointChecks sqec(self);
90 self->QuickDeliverException();
95 Thread* self)
97 ScopedQuickEntrypointChecks sqec(self);
100 self->QuickDeliverException();
104 Thread* self)
106 ScopedQuickEntrypointChecks sqec(self);
108 self->QuickDeliverException();