Lines Matching refs:class_def_idx
2319 uint16_t class_def_idx, in FindOatClass() argument
2322 DCHECK_NE(class_def_idx, DexFile::kDexNoIndex16); in FindOatClass()
2327 *oat_class = oat_dex_file->GetOatClass(class_def_idx); in FindOatClass()
2331 static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file, uint16_t class_def_idx, in GetOatMethodIndexFromMethodIndex() argument
2333 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx); in GetOatMethodIndexFromMethodIndex()
2466 const void* ClassLinker::GetQuickOatCodeFor(const DexFile& dex_file, uint16_t class_def_idx, in GetQuickOatCodeFor() argument
2469 if (!FindOatClass(dex_file, class_def_idx, &oat_class)) { in GetQuickOatCodeFor()
2472 uint32_t oat_method_idx = GetOatMethodIndexFromMethodIndex(dex_file, class_def_idx, method_idx); in GetQuickOatCodeFor()
2477 const void* ClassLinker::GetPortableOatCodeFor(const DexFile& dex_file, uint16_t class_def_idx, in GetPortableOatCodeFor() argument
2480 if (!FindOatClass(dex_file, class_def_idx, &oat_class)) { in GetPortableOatCodeFor()
2483 uint32_t oat_method_idx = GetOatMethodIndexFromMethodIndex(dex_file, class_def_idx, method_idx); in GetPortableOatCodeFor()