Home | History | Annotate | Download | only in openjdkjvmti

Lines Matching refs:new_dex_file

66 static void DoDexUnquicken(const art::DexFile& new_dex_file,
70 vdex->UnquickenDexFile(new_dex_file,
94 std::unique_ptr<const art::DexFile> new_dex_file;
100 // property from `original` to `new_dex_file`.
136 new_dex_file = dex_file_loader.Open(
146 if (new_dex_file == nullptr) {
151 new_dex_file->SetHiddenapiDomain(original.GetHiddenapiDomain());
153 DoDexUnquicken(*new_dex_file, original);
155 RecomputeDexChecksum(const_cast<art::DexFile*>(new_dex_file.get()));
156 DCheckVerifyDexFile(*new_dex_file);
157 std::unique_ptr<FixedUpDexFile> ret(new FixedUpDexFile(std::move(new_dex_file), std::move(data)));