Searched refs:EnsureInitialized (Results 1 - 25 of 28) sorted by relevance

12

/art/runtime/
H A Dtransaction_test.cc47 class_linker_->EnsureInitialized(soa.Self(), h_klass, true, true);
53 class_linker_->EnsureInitialized(soa.Self(), h_klass, true, true);
74 bool success = class_linker_->EnsureInitialized(soa.Self(), h_klass, true, true);
180 bool success = class_linker_->EnsureInitialized(soa.Self(), h_klass, true, true);
278 bool success = class_linker_->EnsureInitialized(soa.Self(), h_klass, true, true);
380 bool success = class_linker_->EnsureInitialized(soa.Self(), h_klass, true, true);
516 bool success = class_linker_->EnsureInitialized(soa.Self(), h_klass, true, true);
552 bool success = class_linker_->EnsureInitialized(soa.Self(), h_klass, true, true);
576 bool success = class_linker_->EnsureInitialized(soa.Self(), h_klass, true, true);
H A Dreference_table_test.cc53 CHECK(class_linker->EnsureInitialized(self, h_ref_class, true, true));
H A Druntime_callbacks_test.cc309 ASSERT_TRUE(class_linker_->EnsureInitialized(Thread::Current(), h_Y, true, true));
H A Dclass_linker_test.cc1001 bool initialized = class_linker_->EnsureInitialized(soa.Self(),
1119 class_linker_->EnsureInitialized(soa.Self(), statics, true, true);
1405 class_linker_->EnsureInitialized(soa.Self(), security_manager, true, true);
1420 class_linker_->EnsureInitialized(soa.Self(), statics, true, true);
1490 class_linker_->EnsureInitialized(soa.Self(), method_types, true, true);
H A Djni_internal.cc122 static ObjPtr<mirror::Class> EnsureInitialized(Thread* self, ObjPtr<mirror::Class> klass)
129 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_klass, true, true)) {
138 ObjPtr<mirror::Class> c = EnsureInitialized(soa.Self(), soa.Decode<mirror::Class>(jni_class));
198 hs.NewHandle(EnsureInitialized(soa.Self(), soa.Decode<mirror::Class>(jni_class))));
601 ObjPtr<mirror::Class> c = EnsureInitialized(soa.Self(), soa.Decode<mirror::Class>(java_class));
627 ObjPtr<mirror::Class> c = EnsureInitialized(soa.Self(),
654 ObjPtr<mirror::Class> c = EnsureInitialized(soa.Self(),
H A Druntime.cc614 CHECK(cl->EnsureInitialized(soa.Self(), class_loader_class, true, true));
632 CHECK(cl->EnsureInitialized(soa.Self(), thread_class, true, true));
691 class_linker_->EnsureInitialized(soa.Self(), class_class, true, true);
693 class_linker_->EnsureInitialized(soa.Self(), field_class, true, true);
H A Dreflection.cc602 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(soa.Self(), h_class, true, true)) {
H A Dreflection_test.cc122 bool initialized = class_linker_->EnsureInitialized(self, h_class, true, true);
H A Dclass_linker.h375 bool EnsureInitialized(Thread* self,
H A Dmethod_handles.cc631 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h, true, true)) {
H A Doat_file_assistant_test.cc1224 linker->EnsureInitialized(soa.Self(), dexfile, true, true);
H A Ddex_file_annotations.cc560 Runtime::Current()->GetClassLinker()->EnsureInitialized(self, field_class, true, true);
/art/runtime/native/
H A Djava_lang_reflect_Constructor.cc94 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(soa.Self(), c, true, true)) {
H A Djava_lang_Class.cc54 // TODO: we could EnsureInitialized here, rather than on every reflective get/set or invoke .
100 class_linker->EnsureInitialized(soa.Self(), c, true, true);
737 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(
H A Djava_lang_reflect_Field.cc133 if (UNLIKELY(!class_linker->EnsureInitialized(soa.Self(), h_klass, true, true))) {
/art/runtime/interpreter/
H A Dunstarted_runtime_test.cc966 ASSERT_TRUE(class_linker->EnsureInitialized(self, floating_decimal, true, true));
1020 ASSERT_TRUE(class_linker->EnsureInitialized(self, double_class, true, true));
1056 ASSERT_TRUE(class_linker->EnsureInitialized(self, thread_class, true, true));
1086 ASSERT_TRUE(class_linker->EnsureInitialized(self, log_manager_class, true, true));
1101 CHECK(class_linker->EnsureInitialized(self, h_class, true, true));
1176 CHECK(class_linker->EnsureInitialized(self, boot_cp_class, true, true));
1294 ASSERT_TRUE(class_linker->EnsureInitialized(self, list_class, true, true));
1329 ASSERT_TRUE(class_linker->EnsureInitialized(self, throw_class, true, true));
H A Dinterpreter.cc427 // Do this after populating the shadow frame in case EnsureInitialized causes a GC.
432 if (UNLIKELY(!class_linker->EnsureInitialized(self, h_class, true, true))) {
609 if (UNLIKELY(!Runtime::Current()->GetClassLinker()->EnsureInitialized(
H A Dunstarted_runtime.cc143 if (!class_linker->EnsureInitialized(self, h_class, true, true)) {
267 if (cl->EnsureInitialized(self, h_klass, true, true)) {
582 if (!runtime->GetClassLinker()->EnsureInitialized(self, h_class, true, true)) {
661 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, c, true, true)) {
907 if (!class_linker->EnsureInitialized(self, h_props_class, true, true)) {
H A Dinterpreter_common.h308 if (UNLIKELY(!class_linker->EnsureInitialized(self, h_class, true, true))) {
H A Dinterpreter_common.cc473 if (UNLIKELY(!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_class, true,
/art/compiler/
H A Dexception_test.cc52 class_linker_->EnsureInitialized(soa.Self(), klass, true, true);
/art/runtime/entrypoints/
H A Dentrypoint_utils-inl.h137 // EnsureInitialized (the class initializer) might cause a GC.
146 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_klass, true, true)) {
166 // EnsureInitialized (the class initializer) might cause a GC.
175 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_class, true, true)) {
407 if (LIKELY(class_linker->EnsureInitialized(self, hs.NewHandle(fields_class), true, true))) {
777 if (!class_linker->EnsureInitialized(self, h_class, true, true)) {
/art/runtime/mirror/
H A Ddex_cache_test.cc129 class_linker_->EnsureInitialized(soa.Self(), method_types, true, true);
/art/compiler/driver/
H A Dcompiler_driver.cc2268 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, false);
2282 manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, false, true);
2302 bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,
2440 Runtime::Current()->GetClassLinker()->EnsureInitialized(hs.Self(), h_klass, true, true);
2442 // Collect handles since there may be thread suspension in future EnsureInitialized.
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc788 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_class, true, true)) {
1188 linker->EnsureInitialized(soa.Self(), called_class, true, true);

Completed in 607 milliseconds

12