Home
last modified time | relevance | path

Searched refs:imt_method (Results 1 – 2 of 2) sorted by relevance

/art/runtime/entrypoints/
Dentrypoint_utils-inl.h533 ArtMethod* imt_method = klass->GetImt(pointer_size)->Get(imt_index, pointer_size); in FindMethodToCall() local
534 if (!imt_method->IsRuntimeMethod()) { in FindMethodToCall()
538 CHECK_EQ(imt_method, method) << ArtMethod::PrettyMethod(resolved_method) << " / " in FindMethodToCall()
539 << imt_method->PrettyMethod() << " / " in FindMethodToCall()
543 return imt_method; in FindMethodToCall()
/art/dex2oat/linker/
Dimage_writer.cc1680 ArtMethod* imt_method = imt->Get(i, target_ptr_size_); in RecordNativeRelocations() local
1681 DCHECK(imt_method != nullptr); in RecordNativeRelocations()
1682 if (imt_method->IsRuntimeMethod() && in RecordNativeRelocations()
1683 !IsInBootImage(imt_method) && in RecordNativeRelocations()
1684 !NativeRelocationAssigned(imt_method)) { in RecordNativeRelocations()
1685 AssignMethodOffset(imt_method, NativeObjectRelocationType::kRuntimeMethod, oat_index); in RecordNativeRelocations()