Lines Matching refs:self

120                                                                  Thread* self,  in CheckClassInitializedForObjectAlloc()  argument
125 StackHandleScope<1> hs(self); in CheckClassInitializedForObjectAlloc()
136 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_class, true, true)) { in CheckClassInitializedForObjectAlloc()
137 DCHECK(self->IsExceptionPending()); in CheckClassInitializedForObjectAlloc()
140 DCHECK(!self->IsExceptionPending()); in CheckClassInitializedForObjectAlloc()
148 Thread* self, in CheckObjectAlloc() argument
153 self->ThrowNewException("Ljava/lang/InstantiationError;", klass->PrettyDescriptor().c_str()); in CheckObjectAlloc()
163 return CheckClassInitializedForObjectAlloc(klass, self, slow_path); in CheckObjectAlloc()
171 Thread* self, in AllocObjectFromCode() argument
174 klass = CheckObjectAlloc(klass, self, &slow_path); in AllocObjectFromCode()
181 self, in AllocObjectFromCode()
185 return klass->Alloc<kInstrumented>(self, allocator_type); in AllocObjectFromCode()
192 Thread* self, in AllocObjectFromCodeResolved() argument
196 klass = CheckClassInitializedForObjectAlloc(klass, self, &slow_path); in AllocObjectFromCodeResolved()
206 self, heap->GetCurrentAllocator()); in AllocObjectFromCodeResolved()
210 mirror::Class::AddFinalizer::kNoAddFinalizer>(self, allocator_type); in AllocObjectFromCodeResolved()
217 Thread* self, in AllocObjectFromCodeInitialized() argument
222 mirror::Class::AddFinalizer::kNoAddFinalizer>(self, allocator_type); in AllocObjectFromCodeInitialized()
268 Thread* self, in AllocArrayFromCode() argument
279 return mirror::Array::Alloc</*kInstrumented=*/true>(self, in AllocArrayFromCode()
285 return mirror::Array::Alloc<kInstrumented>(self, in AllocArrayFromCode()
296 Thread* self, in AllocArrayFromCodeResolved() argument
305 return mirror::Array::Alloc<kInstrumented>(self, in AllocArrayFromCodeResolved()
315 Thread* self, in FindFieldFromCode() argument
332 StackHandleScope<2> hs(self); in FindFieldFromCode()
346 DCHECK(self->IsExceptionPending()); // Throw exception and unwind. in FindFieldFromCode()
360 DCHECK(self->IsExceptionPending()); // Throw exception and unwind. in FindFieldFromCode()
369 self->ThrowNewExceptionF("Ljava/lang/NoSuchFieldError;", in FindFieldFromCode()
386 StackHandleScope<1> hs(self); in FindFieldFromCode()
387 StackArtFieldHandleScope<1> rhs(self); in FindFieldFromCode()
389 if (LIKELY(class_linker->EnsureInitialized(self, hs.NewHandle(fields_class), true, true))) { in FindFieldFromCode()
393 DCHECK(self->IsExceptionPending()); // Throw exception and unwind in FindFieldFromCode()
404 Thread* self, size_t expected_size) \
429 Thread* self) in FindMethodToCall() argument
472 StackHandleScope<2> hs2(self); in FindMethodToCall()
481 CHECK(self->IsExceptionPending()); in FindMethodToCall()
565 Thread* self) { in FindMethodFromCode() argument
572 resolved_method = class_linker->ResolveMethod<resolve_mode>(self, method_idx, referrer, type); in FindMethodFromCode()
574 StackHandleScope<1> hs(self); in FindMethodFromCode()
576 resolved_method = class_linker->ResolveMethod<resolve_mode>(self, method_idx, referrer, type); in FindMethodFromCode()
579 DCHECK(self->IsExceptionPending()); // Throw exception and unwind. in FindMethodFromCode()
583 method_idx, resolved_method, this_object, referrer, self); in FindMethodFromCode()
592 Thread* self)
703 Thread* self, in ResolveVerifyAndClinit() argument
709 CHECK(self->IsExceptionPending()); in ResolveVerifyAndClinit()
729 StackHandleScope<1> hs(self); in ResolveVerifyAndClinit()
731 if (!class_linker->EnsureInitialized(self, h_class, true, true)) { in ResolveVerifyAndClinit()
732 CHECK(self->IsExceptionPending()); in ResolveVerifyAndClinit()