Searched defs:h_new_class (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Dclass_linker.cc2811 MutableHandle<mirror::Class> h_new_class = hs.NewHandle<mirror::Class>(nullptr); local
2812 if (!LinkClass(self, descriptor, klass, interfaces, &h_new_class)) {
2820 CHECK(h_new_class != nullptr) << descriptor;
2821 CHECK(h_new_class->IsResolved() && !h_new_class->IsErroneousResolved()) << descriptor;
2832 Runtime::Current()->GetInstrumentation()->InstallStubsForClass(h_new_class.Get());
2846 Runtime::Current()->GetRuntimeCallbacks()->ClassPrepare(klass, h_new_class);
2849 jit::Jit::NewTypeLoadedIfUsingJit(h_new_class.Get());
2851 return h_new_class.Get();
5313 auto h_new_class local
[all...]

Completed in 42 milliseconds