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

/art/runtime/entrypoints/interpreter/
H A Dinterpreter_entrypoints.cc39 if (UNLIKELY(!Runtime::Current()->GetClassLinker()->EnsureInitialized(h_class, true, true))) {
/art/runtime/native/
H A Djava_lang_reflect_Constructor.cc51 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(c, true, true)) {
H A Djava_lang_Class.cc37 // TODO: we could EnsureInitialized here, rather than on every reflective get/set or invoke .
81 class_linker->EnsureInitialized(c, true, true);
H A Djava_lang_reflect_Field.cc107 if (UNLIKELY(!class_linker->EnsureInitialized(h_klass, true, true))) {
/art/runtime/
H A Dtransaction_test.cc113 class_linker_->EnsureInitialized(h_klass, true, true);
208 class_linker_->EnsureInitialized(h_klass, true, true);
308 class_linker_->EnsureInitialized(h_klass, true, true);
427 class_linker_->EnsureInitialized(h_klass, true, true);
448 class_linker_->EnsureInitialized(h_klass, true, true);
489 class_linker_->EnsureInitialized(h_klass, true, true);
H A Dexception_test.cc48 class_linker_->EnsureInitialized(klass, true, true);
H A Druntime.cc359 CHECK(cl->EnsureInitialized(class_loader_class, true, true));
378 CHECK(cl->EnsureInitialized(thread_class, true, true));
431 class_linker_->EnsureInitialized(klass, true, true);
H A Djni_internal.cc127 static mirror::Class* EnsureInitialized(Thread* self, mirror::Class* klass)
134 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(h_klass, true, true)) {
143 mirror::Class* c = EnsureInitialized(soa.Self(), soa.Decode<mirror::Class*>(jni_class));
200 hs.NewHandle(EnsureInitialized(soa.Self(), soa.Decode<mirror::Class*>(jni_class))));
878 mirror::Class* c = EnsureInitialized(soa.Self(), soa.Decode<mirror::Class*>(java_class));
899 mirror::Class* c = EnsureInitialized(soa.Self(), soa.Decode<mirror::Class*>(java_class));
919 mirror::Class* c = EnsureInitialized(soa.Self(), soa.Decode<mirror::Class*>(java_class));
3378 c = EnsureInitialized(Thread::Current(), c);
H A Dclass_linker_test.cc841 class_linker_->EnsureInitialized(statics, true, true);
1119 class_linker_->EnsureInitialized(security_manager, true, true);
1134 class_linker_->EnsureInitialized(statics, true, true);
H A Dclass_linker.h226 bool EnsureInitialized(Handle<mirror::Class> c, bool can_init_fields, bool can_init_parents)
H A Dreflection.cc536 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(h_class, true, true)) {
H A Dreflection_test.cc120 bool initialized = class_linker_->EnsureInitialized(h_class, true, true);
H A Dthread.cc1690 if (UNLIKELY(!runtime->GetClassLinker()->EnsureInitialized(exception_class, true, true))) {
H A Dclass_linker.cc599 EnsureInitialized(h_class, true, true);
4367 bool ClassLinker::EnsureInitialized(Handle<mirror::Class> c, bool can_init_fields, function in class:art::ClassLinker
/art/runtime/entrypoints/portable/
H A Dportable_trampoline_entrypoints.cc218 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(h_class, true, true)) {
402 linker->EnsureInitialized(called_class, true, true);
/art/runtime/entrypoints/
H A Dentrypoint_utils-inl.h72 // EnsureInitialized (the class initializer) might cause a GC.
81 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(h_klass, true, true)) {
99 // EnsureInitialized (the class initializer) might cause a GC.
108 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(h_class, true, true)) {
319 if (LIKELY(class_linker->EnsureInitialized(h_class, true, true))) {
604 if (!class_linker->EnsureInitialized(h_class, true, true)) {
/art/runtime/interpreter/
H A Dinterpreter_common.h195 if (UNLIKELY(!class_linker->EnsureInitialized(h_class, true, true))) {
H A Dinterpreter.cc461 // Do this after populating the shadow frame in case EnsureInitialized causes a GC.
466 if (UNLIKELY(!class_linker->EnsureInitialized(h_class, true, true))) {
556 if (UNLIKELY(!Runtime::Current()->GetClassLinker()->EnsureInitialized(
H A Dinterpreter_common.cc787 if (!class_linker->EnsureInitialized(h_class, true, true)) {
/art/compiler/driver/
H A Dcompiler_driver.cc1886 manager->GetClassLinker()->EnsureInitialized(klass, false, false);
1900 manager->GetClassLinker()->EnsureInitialized(klass, false, true);
1919 bool success = manager->GetClassLinker()->EnsureInitialized(klass, true, true);
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc522 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(h_class, true, true)) {
843 linker->EnsureInitialized(called_class, true, true);

Completed in 4588 milliseconds