Lines Matching refs:self

43   static ObjPtr<FieldVarHandle> CreateFieldVarHandle(Thread* const self,  in CreateFieldVarHandle()  argument
47 StackHandleScope<4> hs(self); in CreateFieldVarHandle()
49 ObjPtr<FieldVarHandle>::DownCast(GetClassRoot<FieldVarHandle>()->AllocObject(self))); in CreateFieldVarHandle()
66 static ObjPtr<ArrayElementVarHandle> CreateArrayElementVarHandle(Thread* const self, in CreateArrayElementVarHandle() argument
70 StackHandleScope<3> hs(self); in CreateArrayElementVarHandle()
73 GetClassRoot<ArrayElementVarHandle>()->AllocObject(self))); in CreateArrayElementVarHandle()
84 Thread* const self, in CreateByteArrayViewVarHandle() argument
89 StackHandleScope<4> hs(self); in CreateByteArrayViewVarHandle()
92 GetClassRoot<ByteArrayViewVarHandle>()->AllocObject(self))); in CreateByteArrayViewVarHandle()
105 Thread* const self, in CreateByteBufferViewVarHandle() argument
110 StackHandleScope<5> hs(self); in CreateByteBufferViewVarHandle()
113 GetClassRoot<ByteArrayViewVarHandle>()->AllocObject(self))); in CreateByteBufferViewVarHandle()
120 class_linker->FindSystemClass(self, "Ljava/nio/ByteBuffer;")); in CreateByteBufferViewVarHandle()
215 Thread* const self = Thread::Current(); in MethodTypeOf() local
217 ScopedObjectAccess soa(self); in MethodTypeOf()
218 StackHandleScope<3> hs(self); in MethodTypeOf()
225 ptypes->Set(i, class_linker->FindClass(self, descriptors[i].c_str(), boot_class_loader)); in MethodTypeOf()
228 hs.NewHandle(class_linker->FindClass(self, descriptors.back().c_str(), boot_class_loader)); in MethodTypeOf()
229 return MethodType::Create(self, rtype, ptypes); in MethodTypeOf()
277 Thread * const self = Thread::Current(); in TEST_F() local
278 ScopedObjectAccess soa(self); in TEST_F()
281 ArtField* value = mirror::Class::FindField(self, i->GetClass(), "value", "I"); in TEST_F()
285 StackHandleScope<6> hs(self); in TEST_F()
286 Handle<mirror::FieldVarHandle> fvh(hs.NewHandle(CreateFieldVarHandle(self, value, mask))); in TEST_F()
384 return fvh->GetMethodTypeForAccessMode(self, access_mode)->IsExactMatch(method_type.Get()); in TEST_F()
421 Thread * const self = Thread::Current(); in TEST_F() local
422 ScopedObjectAccess soa(self); in TEST_F()
425 ArtField* value = mirror::Class::FindField(self, i->GetClass(), "MIN_VALUE", "I"); in TEST_F()
429 StackHandleScope<6> hs(self); in TEST_F()
430 Handle<mirror::FieldVarHandle> fvh(hs.NewHandle(CreateFieldVarHandle(self, value, mask))); in TEST_F()
522 return fvh->GetMethodTypeForAccessMode(self, access_mode)->IsExactMatch(method_type.Get()); in TEST_F()
559 Thread * const self = Thread::Current(); in TEST_F() local
560 ScopedObjectAccess soa(self); in TEST_F()
561 StackHandleScope<7> hs(self); in TEST_F()
598 hs.NewHandle(CreateArrayElementVarHandle(self, string_array_class, mask))); in TEST_F()
692 return vh->GetMethodTypeForAccessMode(self, access_mode)->IsExactMatch(method_type.Get()); in TEST_F()
729 Thread * const self = Thread::Current(); in TEST_F() local
730 ScopedObjectAccess soa(self); in TEST_F()
731 StackHandleScope<7> hs(self); in TEST_F()
753 hs.NewHandle(CreateByteArrayViewVarHandle(self, char_array_class, native_byte_order, mask))); in TEST_F()
844 return vh->GetMethodTypeForAccessMode(self, access_mode)->IsExactMatch(method_type.Get()); in TEST_F()
881 Thread * const self = Thread::Current(); in TEST_F() local
882 ScopedObjectAccess soa(self); in TEST_F()
883 StackHandleScope<7> hs(self); in TEST_F()
905 CreateByteBufferViewVarHandle(self, double_array_class, native_byte_order, mask))); in TEST_F()
997 return vh->GetMethodTypeForAccessMode(self, access_mode)->IsExactMatch(method_type.Get()); in TEST_F()