Lines Matching refs:vdex
177 std::unique_ptr<VdexFile> vdex(new VdexFile(std::move(mmap))); in OpenAtAddress() local
178 if (!vdex->IsValid()) { in OpenAtAddress()
183 if (unquicken && vdex->HasDexSection()) { in OpenAtAddress()
185 if (!vdex->OpenAllDexFiles(&unique_ptr_dex_files, error_msg)) { in OpenAtAddress()
190 vdex->Unquicken(MakeNonOwningPointerVector(unique_ptr_dex_files), in OpenAtAddress()
193 size_t offset = vdex->GetDexSectionHeaderOffset(); in OpenAtAddress()
194 reinterpret_cast<DexSectionHeader*>(vdex->mmap_.Begin() + offset)->quickening_info_size_ = 0; in OpenAtAddress()
198 vdex->AllowWriting(false); in OpenAtAddress()
201 return vdex; in OpenAtAddress()
485 std::string vdex(reinterpret_cast<const char*>(data.data()), data.size()); in MatchesBootClassPathChecksums()
487 if (vdex == runtime) { in MatchesBootClassPathChecksums()
491 << vdex << ", actual=" << runtime << ")"; in MatchesBootClassPathChecksums()