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