Home
last modified time | relevance | path

Searched refs:method_array (Results 1 – 3 of 3) sorted by relevance

/art/runtime/mirror/
Diftable.h38 auto* method_array = down_cast<PointerArray*>(Get((i * kMax) + kMethodArray)); in GetMethodArray() local
39 DCHECK(method_array != nullptr); in GetMethodArray()
40 return method_array; in GetMethodArray()
44 auto* method_array = down_cast<PointerArray*>(Get((i * kMax) + kMethodArray)); in GetMethodArrayCount() local
45 return method_array == nullptr ? 0u : method_array->GetLength(); in GetMethodArrayCount()
/art/patchoat/
Dpatchoat.cc615 auto* method_array = iftable->GetMethodArray(i); in VisitObject() local
616 CHECK(method_array != nullptr); in VisitObject()
617 FixupNativePointerArray(method_array); in VisitObject()
/art/runtime/
Dclass_linker.cc4805 auto* method_array = if_table->GetMethodArray(i); in LinkInterfaceMethods() local
4807 auto method = method_array->GetElementPtrSize<ArtMethod*>(j, image_pointer_size_); in LinkInterfaceMethods()
4831 mirror::PointerArray* method_array; in LinkInterfaceMethods() local
4837 method_array = down_cast<mirror::PointerArray*>(if_table->GetMethodArray(i)->Clone(self)); in LinkInterfaceMethods()
4839 method_array = AllocPointerArray(self, num_methods); in LinkInterfaceMethods()
4841 if (UNLIKELY(method_array == nullptr)) { in LinkInterfaceMethods()
4845 iftable->SetMethodArray(i, method_array); in LinkInterfaceMethods()
4857 auto method_array(hs2.NewHandle(iftable->GetMethodArray(i))); in LinkInterfaceMethods() local
4910 method_array->SetElementPtrSize(j, vtable_method, image_pointer_size_); in LinkInterfaceMethods()
4942 method_array->SetElementPtrSize(j, miranda_method, image_pointer_size_); in LinkInterfaceMethods()
[all …]