Home
last modified time | relevance | path

Searched refs:new_dex_file (Results 1 – 4 of 4) sorted by relevance

/art/openjdkjvmti/
Dfixed_up_dex_file.cc66 static void DoDexUnquicken(const art::DexFile& new_dex_file, in DoDexUnquicken() argument
70 vdex->UnquickenDexFile(new_dex_file, in DoDexUnquicken()
94 std::unique_ptr<const art::DexFile> new_dex_file; in Create() local
136 new_dex_file = dex_file_loader.Open( in Create()
146 if (new_dex_file == nullptr) { in Create()
151 new_dex_file->SetHiddenapiDomain(original.GetHiddenapiDomain()); in Create()
153 DoDexUnquicken(*new_dex_file, original); in Create()
155 RecomputeDexChecksum(const_cast<art::DexFile*>(new_dex_file.get())); in Create()
156 DCheckVerifyDexFile(*new_dex_file); in Create()
157 std::unique_ptr<FixedUpDexFile> ret(new FixedUpDexFile(std::move(new_dex_file), std::move(data))); in Create()
Dti_class_loader.h86 const art::DexFile* new_dex_file) REQUIRES_SHARED(art::Locks::mutator_lock_);
/art/runtime/
Druntime_callbacks.cc241 DexFile const* new_dex_file = nullptr; in ClassPreDefine() local
248 &new_dex_file, in ClassPreDefine()
250 if ((new_dex_file != nullptr && new_dex_file != current_dex_file) || in ClassPreDefine()
252 DCHECK(new_dex_file != nullptr && new_class_def != nullptr); in ClassPreDefine()
253 current_dex_file = new_dex_file; in ClassPreDefine()
/art/dex2oat/
Ddex2oat_test.cc807 std::unique_ptr<const DexFile> new_dex_file = oat_dex_file->OpenDexFile(&error_msg); in CheckResult() local
808 ASSERT_TRUE(new_dex_file != nullptr); in CheckResult()
809 uint32_t class_def_count = new_dex_file->NumClassDefs(); in CheckResult()
816 std::string new_class0 = new_dex_file->PrettyType(new_dex_file->GetClassDef(0).class_idx_); in CheckResult()
817 std::string new_class1 = new_dex_file->PrettyType(new_dex_file->GetClassDef(1).class_idx_); in CheckResult()