Home | History | Annotate | Download | only in runtime

Lines Matching refs:class_def_idx

2346                                uint16_t class_def_idx,
2349 DCHECK_NE(class_def_idx, DexFile::kDexNoIndex16);
2354 *oat_class = oat_dex_file->GetOatClass(class_def_idx);
2358 static uint32_t GetOatMethodIndexFromMethodIndex(const DexFile& dex_file, uint16_t class_def_idx,
2360 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_idx);
2502 const void* ClassLinker::GetQuickOatCodeFor(const DexFile& dex_file, uint16_t class_def_idx,
2505 if (!FindOatClass(dex_file, class_def_idx, &oat_class)) {
2508 uint32_t oat_method_idx = GetOatMethodIndexFromMethodIndex(dex_file, class_def_idx, method_idx);
2513 const void* ClassLinker::GetPortableOatCodeFor(const DexFile& dex_file, uint16_t class_def_idx,
2516 if (!FindOatClass(dex_file, class_def_idx, &oat_class)) {
2519 uint32_t oat_method_idx = GetOatMethodIndexFromMethodIndex(dex_file, class_def_idx, method_idx);