HomeSort by relevance Sort by last modified time
    Searched refs:new_dex_file (Results 1 - 5 of 5) sorted by null

  /art/runtime/openjdkjvmti/
fixed_up_dex_file.cc 48 static void DoDexUnquicken(const art::DexFile& new_dex_file, const art::DexFile& original_dex_file)
62 vdex->FullyUnquickenDexFile(new_dex_file, original_dex_file);
71 std::unique_ptr<const art::DexFile> new_dex_file(art::DexFile::Open(
80 if (new_dex_file.get() == nullptr) {
85 DoDexUnquicken(*new_dex_file, original);
86 RecomputeDexChecksum(const_cast<art::DexFile*>(new_dex_file.get()));
87 std::unique_ptr<FixedUpDexFile> ret(new FixedUpDexFile(std::move(new_dex_file), std::move(data)));
ti_class_loader.h 91 const art::DexFile* new_dex_file) REQUIRES_SHARED(art::Locks::mutator_lock_);
  /art/runtime/
runtime_callbacks.cc 81 DexFile const* new_dex_file = nullptr; local
88 &new_dex_file,
90 if ((new_dex_file != nullptr && new_dex_file != current_dex_file) ||
92 DCHECK(new_dex_file != nullptr && new_class_def != nullptr);
93 current_dex_file = new_dex_file;
class_linker.cc 2868 DexFile const* new_dex_file = nullptr; local
    [all...]
  /art/dex2oat/
dex2oat_test.cc 801 std::unique_ptr<const DexFile> new_dex_file = oat_dex_file->OpenDexFile(&error_msg); local
802 ASSERT_TRUE(new_dex_file != nullptr);
803 uint32_t class_def_count = new_dex_file->NumClassDefs();
810 std::string new_class0 = new_dex_file->PrettyType(new_dex_file->GetClassDef(0).class_idx_);
811 std::string new_class1 = new_dex_file->PrettyType(new_dex_file->GetClassDef(1).class_idx_);
    [all...]

Completed in 133 milliseconds