Lines Matching refs:oat_dex_file
335 OatDexFile* oat_dex_file = new OatDexFile(this, in Setup() local
341 oat_dex_files_storage_.push_back(oat_dex_file); in Setup()
344 StringPiece key(oat_dex_file->GetDexFileLocation()); in Setup()
345 oat_dex_files_.Put(key, oat_dex_file); in Setup()
347 StringPiece canonical_key(oat_dex_file->GetCanonicalDexFileLocation()); in Setup()
348 oat_dex_files_.Put(canonical_key, oat_dex_file); in Setup()
379 const OatFile::OatDexFile* oat_dex_file = nullptr; in GetOatDexFile() local
385 oat_dex_file = primary_it->second; in GetOatDexFile()
386 DCHECK(oat_dex_file != nullptr); in GetOatDexFile()
394 oat_dex_file = secondary_lb->second; // May be nullptr. in GetOatDexFile()
402 oat_dex_file = canonical_it->second; in GetOatDexFile()
409 secondary_oat_dex_files_.PutBefore(secondary_lb, key_copy, oat_dex_file); in GetOatDexFile()
412 if (oat_dex_file != nullptr && in GetOatDexFile()
414 oat_dex_file->GetDexFileLocationChecksum() == *dex_location_checksum)) { in GetOatDexFile()
415 return oat_dex_file; in GetOatDexFile()