/art/runtime/mirror/ |
D | method_type_test.cc | 50 StackHandleScope<5> hs(soa.Self()); in CreateMethodType() local 52 Handle<mirror::ClassLoader> boot_class_loader = hs.NewHandle<mirror::ClassLoader>(nullptr); in CreateMethodType() 54 Handle<mirror::Class> return_clazz = hs.NewHandle(class_linker->FindClass( in CreateMethodType() 60 Handle<mirror::ObjectArray<mirror::Class>> param_classes = hs.NewHandle( in CreateMethodType() 64 Handle<mirror::Class> param = hs.NewHandle(class_linker->FindClass( in CreateMethodType() 76 StackHandleScope<2> hs(soa.Self()); in TEST_F() local 77 Handle<mirror::MethodType> mt1 = hs.NewHandle(CreateMethodType("String", { "Integer" })); in TEST_F() 78 Handle<mirror::MethodType> mt2 = hs.NewHandle(CreateMethodType("String", { "Integer" })); in TEST_F() 84 StackHandleScope<2> hs(soa.Self()); in TEST_F() local 85 Handle<mirror::MethodType> mt1 = hs.NewHandle(CreateMethodType("String", { "Integer" })); in TEST_F() [all …]
|
D | object_test.cc | 66 StackHandleScope<1> hs(self); in AssertString() local 68 hs.NewHandle(String::AllocFromModifiedUtf8(self, expected_utf16_length, utf8_in))); in AssertString() 111 StackHandleScope<2> hs(soa.Self()); in TEST_F() local 112 Handle<ObjectArray<Object>> a1(hs.NewHandle(AllocObjectArray<Object>(soa.Self(), 256))); in TEST_F() 121 StackHandleScope<3> hs(soa.Self()); in TEST_F() local 122 Handle<ObjectArray<Object>> oa(hs.NewHandle(AllocObjectArray<Object>(soa.Self(), 2))); in TEST_F() 133 Handle<Class> aioobe = hs.NewHandle( in TEST_F() 147 Handle<mirror::Class> klass(hs.NewHandle(oa->GetClass())); in TEST_F() 157 StackHandleScope<2> hs(soa.Self()); in TEST_F() local 158 MutableHandle<Class> c = hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "[I")); in TEST_F() [all …]
|
D | dex_cache_test.cc | 44 StackHandleScope<1> hs(soa.Self()); in TEST_F() local 47 hs.NewHandle(class_linker_->AllocAndInitializeDexCache( in TEST_F() 67 StackHandleScope<1> hs(soa.Self()); in TEST_F() local 70 hs.NewHandle(class_linker_->AllocAndInitializeDexCache( in TEST_F() 83 StackHandleScope<1> hs(soa.Self()); in TEST_F() local 84 Handle<mirror::ClassLoader> class_loader(hs.NewHandle( in TEST_F() 97 StackHandleScope<3> hs(soa.Self()); in TEST_F() local 98 Handle<mirror::ClassLoader> class_loader(hs.NewHandle( in TEST_F() 101 hs.NewHandle(class_linker_->FindClass(soa.Self(), "Lpackage1/Package1;", class_loader)); in TEST_F() 104 hs.NewHandle(class_linker_->FindClass(soa.Self(), "Lpackage2/Package2;", class_loader)); in TEST_F() [all …]
|
D | emulated_stack_frame.cc | 152 StackHandleScope<6> hs(self); in CreateFromShadowFrameAndArgs() local 156 Handle<mirror::ObjectArray<mirror::Class>> from_types(hs.NewHandle(caller_type->GetPTypes())); in CreateFromShadowFrameAndArgs() 157 Handle<mirror::ObjectArray<mirror::Class>> to_types(hs.NewHandle(callee_type->GetPTypes())); in CreateFromShadowFrameAndArgs() 169 Handle<mirror::Class> r_type(hs.NewHandle(callee_type->GetRType())); in CreateFromShadowFrameAndArgs() 175 Handle<mirror::ObjectArray<mirror::Object>> references(hs.NewHandle( in CreateFromShadowFrameAndArgs() 182 Handle<ByteArray> stack_frame(hs.NewHandle(ByteArray::Alloc(self, frame_size))); in CreateFromShadowFrameAndArgs() 197 Handle<EmulatedStackFrame> sf(hs.NewHandle( in CreateFromShadowFrameAndArgs() 220 StackHandleScope<3> hs(self); in WriteToShadowFrame() local 221 Handle<mirror::MethodType> frame_callsite_type(hs.NewHandle(GetType())); in WriteToShadowFrame() 222 Handle<mirror::ObjectArray<mirror::Object>> references(hs.NewHandle(GetReferences())); in WriteToShadowFrame() [all …]
|
D | method_type.cc | 42 StackHandleScope<1> hs(self); in Create() local 44 hs.NewHandle(ObjPtr<MethodType>::DownCast(GetClassRoot<MethodType>()->AllocObject(self)))); in Create() 60 StackHandleScope<3> hs(self); in CloneWithoutLeadingParameter() local 61 Handle<ObjectArray<Class>> src_ptypes = hs.NewHandle(method_type->GetPTypes()); in CloneWithoutLeadingParameter() 62 Handle<Class> dst_rtype = hs.NewHandle(method_type->GetRType()); in CloneWithoutLeadingParameter() 64 Handle<ObjectArray<Class>> dst_ptypes = hs.NewHandle(AllocatePTypesArray(self, dst_ptypes_count)); in CloneWithoutLeadingParameter() 83 StackHandleScope<4> hs(self); in CollectTrailingArguments() local 84 Handle<Class> collector_class = hs.NewHandle(collector_array_class); in CollectTrailingArguments() 85 Handle<Class> dst_rtype = hs.NewHandle(method_type->GetRType()); in CollectTrailingArguments() 86 Handle<ObjectArray<Class>> src_ptypes = hs.NewHandle(method_type->GetPTypes()); in CollectTrailingArguments() [all …]
|
D | var_handle_test.cc | 47 StackHandleScope<4> hs(self); in CreateFieldVarHandle() local 48 Handle<FieldVarHandle> fvh = hs.NewHandle( in CreateFieldVarHandle() 50 Handle<Class> var_type = hs.NewHandle(art_field->ResolveType()); in CreateFieldVarHandle() 55 Handle<Class> declaring_type = hs.NewHandle(art_field->GetDeclaringClass()); in CreateFieldVarHandle() 70 StackHandleScope<3> hs(self); in CreateArrayElementVarHandle() local 71 Handle<ArrayElementVarHandle> vh = hs.NewHandle( in CreateArrayElementVarHandle() 77 Handle<Class> var_type = hs.NewHandle(array_class->GetComponentType()); in CreateArrayElementVarHandle() 78 Handle<Class> index_type = hs.NewHandle(class_linker->FindPrimitiveClass('I')); in CreateArrayElementVarHandle() 89 StackHandleScope<4> hs(self); in CreateByteArrayViewVarHandle() local 90 Handle<ByteArrayViewVarHandle> bvh = hs.NewHandle( in CreateByteArrayViewVarHandle() [all …]
|
/art/runtime/ |
D | method_handles_test.cc | 53 StackHandleScope<2> hs(self); in CreateVoidMethodType() local 55 auto parameter_types = hs.NewHandle( in CreateVoidMethodType() 58 Handle<mirror::Class> void_class = hs.NewHandle(GetClassRoot(ClassRoot::kPrimitiveVoid, cl)); in CreateVoidMethodType() 67 StackHandleScope<2> hs(self); in TryConversion() local 68 Handle<mirror::MethodType> from_mt = hs.NewHandle(CreateVoidMethodType(self, from)); in TryConversion() 69 Handle<mirror::MethodType> to_mt = hs.NewHandle(CreateVoidMethodType(self, to)); in TryConversion() 83 StackHandleScope<2> hs(soa.Self()); in TEST_F() local 84 Handle<mirror::Class> from = hs.NewHandle(cl->FindPrimitiveClass('B')); in TEST_F() 85 Handle<mirror::Class> to = hs.NewHandle(cl->FindPrimitiveClass('I')); in TEST_F() 95 StackHandleScope<2> hs(soa.Self()); in TEST_F() local [all …]
|
D | intern_table_test.cc | 35 StackHandleScope<4> hs(soa.Self()); in TEST_F() local 36 Handle<mirror::String> foo_1(hs.NewHandle(intern_table.InternStrong(3, "foo"))); in TEST_F() 37 Handle<mirror::String> foo_2(hs.NewHandle(intern_table.InternStrong(3, "foo"))); in TEST_F() 39 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "foo"))); in TEST_F() 40 Handle<mirror::String> bar(hs.NewHandle(intern_table.InternStrong(3, "bar"))); in TEST_F() 59 StackHandleScope<1> hs(soa.Self()); in TEST_F() local 61 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "foo"))); in TEST_F() 119 StackHandleScope<5> hs(soa.Self()); in TEST_F() local 121 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "hello"))); in TEST_F() 123 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "world"))); in TEST_F() [all …]
|
D | proxy_test.cc | 49 StackHandleScope<4> hs(soa.Self()); in TEST_F() local 51 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader))); in TEST_F() 53 Handle<mirror::Class> I(hs.NewHandle( in TEST_F() 55 Handle<mirror::Class> J(hs.NewHandle( in TEST_F() 63 Handle<mirror::Class> proxy_class(hs.NewHandle( in TEST_F() 83 StackHandleScope<9> hs(soa.Self()); in TEST_F() local 85 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader))); in TEST_F() 87 Handle<mirror::Class> I(hs.NewHandle( in TEST_F() 89 Handle<mirror::Class> J(hs.NewHandle( in TEST_F() 99 proxyClass = hs.NewHandle( in TEST_F() [all …]
|
D | transaction_test.cc | 41 StackHandleScope<2> hs(soa.Self()); in testTransactionAbort() local 43 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader))); in testTransactionAbort() 50 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), in testTransactionAbort() 99 StackHandleScope<2> hs(soa.Self()); in TEST_F() local 101 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;"))); in TEST_F() 105 Handle<mirror::Object> h_obj(hs.NewHandle(h_klass->AllocObject(soa.Self()))); in TEST_F() 116 StackHandleScope<2> hs(soa.Self()); in TEST_F() local 118 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;"))); in TEST_F() 120 Handle<mirror::Object> h_obj(hs.NewHandle(h_klass->AllocObject(soa.Self()))); in TEST_F() 143 StackHandleScope<2> hs(soa.Self()); in TEST_F() local [all …]
|
D | handle_scope_test.cc | 94 VariableSizedHandleScope hs(soa.Self()); in TEST_F() local 97 hs.NewHandle(class_linker->FindSystemClass(soa.Self(), "Ljava/lang/Object;")); in TEST_F() 105 BaseHandleScope* base = &hs; in TEST_F() 107 handles.push_back(hs.NewHandle(o)); in TEST_F() 109 EXPECT_TRUE(hs.Contains(handles.back().GetReference())); in TEST_F() 111 EXPECT_EQ(hs.NumberOfReferences(), base->NumberOfReferences()); in TEST_F() 114 BaseHandleScope* base = &hs; in TEST_F()
|
D | common_dex_operations.h | 104 StackHandleScope<1> hs(self); in DoFieldGetCommon() 107 HandleWrapperObjPtr<mirror::Object> h(hs.NewHandleWrapper(&obj)); in DoFieldGetCommon() 165 StackHandleScope<2> hs(self); in DoFieldPutCommon() 168 HandleWrapperObjPtr<mirror::Object> h(hs.NewHandleWrapper(&obj)); in DoFieldPutCommon() 172 HandleWrapper<mirror::Object> ret(hs.NewHandleWrapper<mirror::Object>( in DoFieldPutCommon() 218 StackHandleScope<2> hs(self); in DoFieldPutCommon() 220 HandleWrapperObjPtr<mirror::Object> h_reg(hs.NewHandleWrapper(®)); in DoFieldPutCommon() 221 HandleWrapperObjPtr<mirror::Object> h_obj(hs.NewHandleWrapper(&obj)); in DoFieldPutCommon()
|
D | class_linker_test.cc | 70 StackHandleScope<1> hs(self); in AssertNonExistentClass() local 71 Handle<mirror::Object> exception = hs.NewHandle<mirror::Object>(self->GetException()); in AssertNonExistentClass() 185 StackHandleScope<2> hs(self); in AssertArrayClass() local 186 Handle<mirror::ClassLoader> loader(hs.NewHandle(class_loader)); in AssertArrayClass() 188 hs.NewHandle(class_linker_->FindClass(self, array_descriptor.c_str(), loader))); in AssertArrayClass() 414 StackHandleScope<1> hs(self); in AssertDexFileClass() local 416 hs.NewHandle(class_linker_->FindSystemClass(self, descriptor.c_str()))); in AssertDexFileClass() 893 StackHandleScope<1> hs(soa.Self()); in TEST_F() local 895 hs.NewHandle(soa.Decode<mirror::ClassLoader>(LoadDex("Nested")))); in TEST_F() 925 StackHandleScope<2> hs(soa.Self()); in TEST_F() local [all …]
|
/art/runtime/gc/ |
D | reference_queue_test.cc | 34 StackHandleScope<20> hs(self); in TEST_F() local 39 auto ref_class = hs.NewHandle( in TEST_F() 43 auto ref1(hs.NewHandle(ref_class->AllocObject(self)->AsReference())); in TEST_F() 45 auto ref2(hs.NewHandle(ref_class->AllocObject(self)->AsReference())); in TEST_F() 68 StackHandleScope<20> hs(self); in TEST_F() local 74 auto weak_ref_class = hs.NewHandle( in TEST_F() 78 auto finalizer_ref_class = hs.NewHandle( in TEST_F() 82 auto ref1(hs.NewHandle(weak_ref_class->AllocObject(self)->AsReference())); in TEST_F() 84 auto ref2(hs.NewHandle(finalizer_ref_class->AllocObject(self)->AsReference())); in TEST_F()
|
D | heap_verification_test.cc | 54 VariableSizedHandleScope hs(soa.Self()); in TEST_F() local 56 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "test"))); in TEST_F() 75 VariableSizedHandleScope hs(soa.Self()); in TEST_F() local 77 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "test"))); in TEST_F() 94 VariableSizedHandleScope hs(soa.Self()); in TEST_F() local 96 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "test"))); in TEST_F() 107 VariableSizedHandleScope hs(soa.Self()); in TEST_F() local 125 VariableSizedHandleScope hs(soa.Self()); in TEST_F() local 127 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), "obj"))); in TEST_F() 129 hs.NewHandle(AllocObjectArray<mirror::Object>(soa.Self(), 256))); in TEST_F() [all …]
|
/art/runtime/native/ |
D | java_lang_String.cc | 57 StackHandleScope<2> hs(soa.Self()); in String_concat() local 58 Handle<mirror::String> string_this(hs.NewHandle(soa.Decode<mirror::String>(java_this))); in String_concat() 59 Handle<mirror::String> string_arg(hs.NewHandle(soa.Decode<mirror::String>(java_string_arg))); in String_concat() 73 StackHandleScope<1> hs(soa.Self()); in String_fastSubstring() local 74 Handle<mirror::String> string_this(hs.NewHandle(soa.Decode<mirror::String>(java_this))); in String_fastSubstring() 87 StackHandleScope<1> hs(soa.Self()); in String_getCharsNoCheck() local 88 Handle<mirror::CharArray> char_array(hs.NewHandle(soa.Decode<mirror::CharArray>(buffer))); in String_getCharsNoCheck() 100 StackHandleScope<1> hs(soa.Self()); in String_doReplace() local 101 Handle<mirror::String> string = hs.NewHandle(soa.Decode<mirror::String>(java_this)); in String_doReplace() 108 StackHandleScope<1u> hs(soa.Self()); in String_toCharArray() local [all …]
|
D | java_lang_Class.cc | 195 StackHandleScope<2> hs(soa.Self()); in Class_classForName() local 197 hs.NewHandle(soa.Decode<mirror::ClassLoader>(javaLoader))); in Class_classForName() 200 hs.NewHandle(class_linker->FindClass(soa.Self(), descriptor.c_str(), class_loader))); in Class_classForName() 229 StackHandleScope<1> hs(soa.Self()); in Class_getNameNative() local 231 return soa.AddLocalReference<jstring>(mirror::Class::ComputeName(hs.NewHandle(c))); in Class_getNameNative() 236 StackHandleScope<1> hs(soa.Self()); in Class_getInterfacesInternal() local 237 Handle<mirror::Class> klass = hs.NewHandle(DecodeClass(soa, javaThis)); in Class_getInterfacesInternal() 290 StackHandleScope<1> hs(self); in GetDeclaredFields() local 307 auto object_array = hs.NewHandle(mirror::ObjectArray<mirror::Field>::Alloc( in GetDeclaredFields() 440 StackHandleScope<2> hs(self); in GetPublicFieldRecursive() local [all …]
|
D | java_lang_reflect_Executable.cc | 60 StackHandleScope<1> hs(soa.Self()); in Executable_getAnnotationNative() local 65 Handle<mirror::Class> klass(hs.NewHandle(soa.Decode<mirror::Class>(annotationType))); in Executable_getAnnotationNative() 87 StackHandleScope<4> hs(soa.Self()); in Executable_getParameterAnnotationsNative() local 89 hs.NewHandle(annotations::GetParameterAnnotations(method)); in Executable_getParameterAnnotationsNative() 107 Handle<mirror::Class> declaring_class = hs.NewHandle(method->GetDeclaringClass()); in Executable_getParameterAnnotationsNative() 115 Handle<mirror::ObjectArray<mirror::Object>> resized_annotations = hs.NewHandle( in Executable_getParameterAnnotationsNative() 132 Handle<mirror::ObjectArray<mirror::Object>> empty_annotations = hs.NewHandle( in Executable_getParameterAnnotationsNative() 160 StackHandleScope<8> hs(self); in Executable_getParameters0() local 162 Handle<mirror::Method> executable = hs.NewHandle(soa.Decode<mirror::Method>(javaMethod)); in Executable_getParameters0() 170 hs.NewHandle<mirror::ObjectArray<mirror::String>>(nullptr); in Executable_getParameters0() [all …]
|
D | java_lang_StringFactory.cc | 40 StackHandleScope<1> hs(soa.Self()); in StringFactory_newStringFromBytes() local 41 Handle<mirror::ByteArray> byte_array(hs.NewHandle(soa.Decode<mirror::ByteArray>(java_data))); in StringFactory_newStringFromBytes() 64 StackHandleScope<1> hs(soa.Self()); in StringFactory_newStringFromChars() local 65 Handle<mirror::CharArray> char_array(hs.NewHandle(soa.Decode<mirror::CharArray>(java_data))); in StringFactory_newStringFromChars() 81 StackHandleScope<1> hs(soa.Self()); in StringFactory_newStringFromString() local 82 Handle<mirror::String> string(hs.NewHandle(soa.Decode<mirror::String>(to_copy))); in StringFactory_newStringFromString()
|
D | java_lang_reflect_Parameter.cc | 70 StackHandleScope<1> hs(soa.Self()); in Parameter_getAnnotationNative() local 74 Handle<mirror::Class> declaring_class = hs.NewHandle(method->GetDeclaringClass()); in Parameter_getAnnotationNative() 95 StackHandleScope<1> hs(soa.Self()); in Parameter_getAnnotationNative() local 96 Handle<mirror::Class> klass(hs.NewHandle(soa.Decode<mirror::Class>(annotationType))); in Parameter_getAnnotationNative()
|
D | java_lang_invoke_MethodHandleImpl.cc | 35 StackHandleScope<2> hs(soa.Self()); in MethodHandleImpl_getMemberInternal() local 36 Handle<mirror::MethodHandleImpl> handle = hs.NewHandle( in MethodHandleImpl_getMemberInternal() 47 MutableHandle<mirror::Object> h_object(hs.NewHandle<mirror::Object>(nullptr)); in MethodHandleImpl_getMemberInternal()
|
/art/openjdkjvmti/ |
D | ti_class_loader.cc | 67 art::StackHandleScope<3> hs(self); in AddToClassLoader() local 73 hs.NewHandle(FindSourceDexFileObject(self, loader))); in AddToClassLoader() 77 art::Handle<art::mirror::LongArray> old_cookie(hs.NewHandle(GetDexFileCookie(java_dex_file_obj))); in AddToClassLoader() 78 art::Handle<art::mirror::LongArray> cookie(hs.NewHandle( in AddToClassLoader() 119 art::StackHandleScope<1> hs(self); in AllocateNewDexFileCookie() local 123 hs.NewHandle(art::mirror::LongArray::Alloc(self, cookie->GetLength() + 1))); in AllocateNewDexFileCookie() 140 art::StackHandleScope<4> hs(self); in GetDexElementList() local 143 base_dex_loader_class(hs.NewHandle(self->DecodeJObject( in GetDexElementList() 153 art::Handle<art::mirror::Class> loader_class(hs.NewHandle(loader->GetClass())); in GetDexElementList() 164 hs.NewHandle(path_list_field->GetObject(loader.Get()))); in GetDexElementList()
|
/art/test/692-vdex-inmem-loader/ |
D | vdex_inmem_loader.cc | 42 StackHandleScope<2> hs(soa.Self()); in Java_Main_areClassesVerified() local 43 Handle<mirror::ClassLoader> h_loader(hs.NewHandle(soa.Decode<mirror::ClassLoader>(loader))); in Java_Main_areClassesVerified() 54 MutableHandle<mirror::Class> h_class(hs.NewHandle<mirror::Class>(nullptr)); in Java_Main_areClassesVerified() 81 StackHandleScope<1> hs(soa.Self()); in Java_Main_hasVdexFile() local 82 Handle<mirror::ClassLoader> h_loader = hs.NewHandle(soa.Decode<mirror::ClassLoader>(loader)); in Java_Main_hasVdexFile() 109 StackHandleScope<1> hs(soa.Self()); in Java_Main_isBackedByOatFile() local 110 Handle<mirror::ClassLoader> h_loader = hs.NewHandle(soa.Decode<mirror::ClassLoader>(loader)); in Java_Main_isBackedByOatFile() 136 StackHandleScope<2> hs(soa.Self()); in Java_Main_areClassesPreverified() local 137 Handle<mirror::ClassLoader> h_loader(hs.NewHandle(soa.Decode<mirror::ClassLoader>(loader))); in Java_Main_areClassesPreverified() 148 MutableHandle<mirror::Class> h_class(hs.NewHandle<mirror::Class>(nullptr)); in Java_Main_areClassesPreverified()
|
/art/test/1985-structural-redefine-stack-scope/ |
D | stack_scope.cc | 49 StackHandleScope<4> hs(soa.Self()); in Java_Main_NativeFieldScopeCheck() local 61 hs.NewHandle(mirror::ObjectArray<mirror::Class>::Alloc( in Java_Main_NativeFieldScopeCheck() 66 Handle<mirror::MethodType> mt(hs.NewHandle(mirror::MethodType::Create( in Java_Main_NativeFieldScopeCheck() 67 soa.Self(), hs.NewHandle(GetClassRoot<mirror::Object>()), mt_arr))); in Java_Main_NativeFieldScopeCheck() 68 Handle<mirror::MethodHandleImpl> mhi(hs.NewHandle( in Java_Main_NativeFieldScopeCheck()
|
/art/runtime/dex/ |
D | dex_file_annotations.cc | 76 ClassData(Scope& hs, ArtField* field) REQUIRES_SHARED(Locks::mutator_lock_) in ClassData() argument 77 : ClassData(hs.NewHandle(field->GetDeclaringClass())) { } in ClassData() 360 StackHandleScope<4> hs(self); in ProcessEncodedAnnotation() local 362 Handle<mirror::Class> annotation_class(hs.NewHandle( in ProcessEncodedAnnotation() 364 hs.NewHandle(klass.GetDexCache()), in ProcessEncodedAnnotation() 365 hs.NewHandle(klass.GetClassLoader())))); in ProcessEncodedAnnotation() 391 Handle<mirror::ObjectArray<mirror::Object>> h_element_array(hs.NewHandle(element_array)); in ProcessEncodedAnnotation() 475 StackHandleScope<1> hs(self); in ProcessAnnotationValue() local 477 dex::StringIndex(index), hs.NewHandle(klass.GetDexCache())); in ProcessAnnotationValue() 491 StackHandleScope<2> hs(self); in ProcessAnnotationValue() local [all …]
|