Lines Matching refs:oat_dex_file

597     OatDexFile* oat_dex_file = new OatDexFile(this,  in Setup()  local
606 oat_dex_files_storage_.push_back(oat_dex_file); in Setup()
609 std::string_view key(oat_dex_file->GetDexFileLocation()); in Setup()
610 oat_dex_files_.Put(key, oat_dex_file); in Setup()
612 std::string_view canonical_key(oat_dex_file->GetCanonicalDexFileLocation()); in Setup()
613 oat_dex_files_.Put(canonical_key, oat_dex_file); in Setup()
1017 OatDexFile* oat_dex_file = in Setup() local
1030 oat_dex_files_storage_.push_back(oat_dex_file); in Setup()
1037 std::string_view canonical_key(oat_dex_file->GetCanonicalDexFileLocation()); in Setup()
1038 oat_dex_files_.Put(key, oat_dex_file); in Setup()
1040 oat_dex_files_.Put(canonical_key, oat_dex_file); in Setup()
1787 OatDexFile* oat_dex_file = new OatDexFile(oat_file.get(), in Open() local
1796 oat_file->oat_dex_files_storage_.push_back(oat_dex_file); in Open()
1798 std::string_view key(oat_dex_file->GetDexFileLocation()); in Open()
1799 oat_file->oat_dex_files_.Put(key, oat_dex_file); in Open()
1801 std::string_view canonical_key(oat_dex_file->GetCanonicalDexFileLocation()); in Open()
1802 oat_file->oat_dex_files_.Put(canonical_key, oat_dex_file); in Open()
2122 const OatDexFile* oat_dex_file = nullptr; in GetOatDexFile() local
2128 oat_dex_file = primary_it->second; in GetOatDexFile()
2129 DCHECK(oat_dex_file != nullptr); in GetOatDexFile()
2137 oat_dex_file = secondary_lb->second; // May be null. in GetOatDexFile()
2145 oat_dex_file = canonical_it->second; in GetOatDexFile()
2152 secondary_oat_dex_files_.PutBefore(secondary_lb, key_copy, oat_dex_file); in GetOatDexFile()
2156 if (oat_dex_file == nullptr) { in GetOatDexFile()
2165 return oat_dex_file; in GetOatDexFile()
2343 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in FindClassDef() local
2347 if (LIKELY((oat_dex_file != nullptr) && oat_dex_file->GetTypeLookupTable().Valid())) { in FindClassDef()
2349 const uint32_t class_def_idx = oat_dex_file->GetTypeLookupTable().Lookup(descriptor, hash); in FindClassDef()
2351 CHECK_LT(class_def_idx, dex_file.NumClassDefs()) << oat_dex_file->GetOatFile()->GetLocation(); in FindClassDef()
2467 const OatDexFile* oat_dex_file = dex_file.GetOatDexFile(); in FindOatClass() local
2468 if (oat_dex_file == nullptr || oat_dex_file->GetOatFile() == nullptr) { in FindOatClass()
2473 return oat_dex_file->GetOatClass(class_def_idx); in FindOatClass()