Lines Matching refs:vdex
173 std::unique_ptr<VdexFile> vdex(new VdexFile(std::move(mmap))); in OpenAtAddress() local
174 if (!vdex->IsValid()) { in OpenAtAddress()
179 if (unquicken && vdex->HasDexSection()) { in OpenAtAddress()
181 if (!vdex->OpenAllDexFiles(&unique_ptr_dex_files, error_msg)) { in OpenAtAddress()
184 vdex->Unquicken(MakeNonOwningPointerVector(unique_ptr_dex_files), in OpenAtAddress()
187 size_t offset = vdex->GetDexSectionHeaderOffset(); in OpenAtAddress()
188 reinterpret_cast<DexSectionHeader*>(vdex->mmap_.Begin() + offset)->quickening_info_size_ = 0; in OpenAtAddress()
191 return vdex; in OpenAtAddress()
446 std::string vdex(reinterpret_cast<const char*>(data.data()), data.size()); in MatchesBootClassPathChecksums()
448 if (vdex == runtime) { in MatchesBootClassPathChecksums()
452 << vdex << ", actual=" << runtime << ")"; in MatchesBootClassPathChecksums()