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

  /art/openjdkjvmti/
fixed_up_dex_file.cc 78 static void DoDexUnquicken(const art::DexFile& new_dex_file,
82 vdex->UnquickenDexFile(new_dex_file, original_dex_file, /* decompile_return_instruction */true);
86 UnhideApis(new_dex_file);
108 std::unique_ptr<const art::DexFile> new_dex_file; local
114 // property from `original` to `new_dex_file`.
151 new_dex_file = dex_file_loader.Open(
161 if (new_dex_file == nullptr) {
167 const_cast<art::DexFile*>(new_dex_file.get())->SetIsPlatformDexFile();
170 DoDexUnquicken(*new_dex_file, original);
172 RecomputeDexChecksum(const_cast<art::DexFile*>(new_dex_file.get()))
    [all...]
ti_class_loader.h 99 const art::DexFile* new_dex_file) REQUIRES_SHARED(art::Locks::mutator_lock_);
  /art/runtime/
runtime_callbacks.cc 194 DexFile const* new_dex_file = nullptr; local
201 &new_dex_file,
203 if ((new_dex_file != nullptr && new_dex_file != current_dex_file) ||
205 DCHECK(new_dex_file != nullptr && new_class_def != nullptr);
206 current_dex_file = new_dex_file;
class_linker.cc 2710 DexFile const* new_dex_file = nullptr; local
    [all...]
  /art/dex2oat/
dex2oat_test.cc 838 std::unique_ptr<const DexFile> new_dex_file = oat_dex_file->OpenDexFile(&error_msg); local
839 ASSERT_TRUE(new_dex_file != nullptr);
840 uint32_t class_def_count = new_dex_file->NumClassDefs();
847 std::string new_class0 = new_dex_file->PrettyType(new_dex_file->GetClassDef(0).class_idx_);
848 std::string new_class1 = new_dex_file->PrettyType(new_dex_file->GetClassDef(1).class_idx_);
    [all...]

Completed in 212 milliseconds