Lines Matching defs:self
61 Thread* self = Thread::Current();
62 self->ThrowNewException(exception_descriptor, msg.str().c_str());
77 Thread* self = Thread::Current();
78 self->ThrowNewWrappedException(exception_descriptor, msg.str().c_str());
560 void ThrowStackOverflowError(Thread* self) {
561 if (self->IsHandlingStackOverflow()) {
566 self->SetStackEndForStackOverflow(); // Allow space on the stack for constructor to execute.
567 JNIEnvExt* env = self->GetJniEnv();
569 msg += PrettySize(self->GetStackSize());
615 stack_state_val.reset(soa.Self()->CreateInternalStackTrace<false>(soa));
633 self->SetException(reinterpret_cast<mirror::Throwable*>(self->DecodeJObject(exc.get())));
644 CHECK(self->IsExceptionPending());
648 self->ResetDefaultStackEnd(); // Return to default stack size.
652 self->ProtectStack();