HomeSort by relevance Sort by last modified time
    Searched refs:java_lang_reflect_ArtMethod (Results 1 - 5 of 5) sorted by null

  /art/runtime/
well_known_classes.h 54 static jclass java_lang_reflect_ArtMethod;
well_known_classes.cc 40 jclass WellKnownClasses::java_lang_reflect_ArtMethod;
160 java_lang_reflect_ArtMethod = CacheClass(env, "java/lang/reflect/ArtMethod");
class_linker.cc 320 Handle<mirror::Class> java_lang_reflect_ArtMethod(hs.NewHandle(
322 CHECK(java_lang_reflect_ArtMethod.Get() != nullptr);
323 java_lang_reflect_ArtMethod->SetObjectSize(mirror::ArtMethod::InstanceSize(sizeof(void*)));
324 SetClassRoot(kJavaLangReflectArtMethod, java_lang_reflect_ArtMethod.Get());
325 java_lang_reflect_ArtMethod->SetStatus(mirror::Class::kStatusResolved, self);
326 mirror::ArtMethod::SetClass(java_lang_reflect_ArtMethod.Get());
338 object_array_art_method->SetComponentType(java_lang_reflect_ArtMethod.Get());
451 java_lang_reflect_ArtMethod->SetStatus(mirror::Class::kStatusNotReady, self);
453 CHECK_EQ(java_lang_reflect_ArtMethod.Get(), Art_method_class);
    [all...]
  /art/runtime/mirror/
art_method.cc 79 void ArtMethod::SetClass(Class* java_lang_reflect_ArtMethod) {
81 CHECK(java_lang_reflect_ArtMethod != NULL);
82 java_lang_reflect_ArtMethod_ = GcRoot<Class>(java_lang_reflect_ArtMethod);
art_method.h 493 static void SetClass(Class* java_lang_reflect_ArtMethod);

Completed in 63 milliseconds