Searched refs:dexfile (Results 1 – 2 of 2) sorted by relevance
/art/runtime/ |
D | art_method.cc | 153 const DexFile* dexfile = GetDexFile(); in FindDexMethodIndexInOtherDexFile() local 155 const DexFile::MethodId& mid = dexfile->GetMethodId(dex_method_idx); in FindDexMethodIndexInOtherDexFile() 157 DCHECK_STREQ(dexfile->GetMethodName(mid), other_dexfile.GetMethodName(name_and_sig_mid)); in FindDexMethodIndexInOtherDexFile() 158 DCHECK_EQ(dexfile->GetMethodSignature(mid), other_dexfile.GetMethodSignature(name_and_sig_mid)); in FindDexMethodIndexInOtherDexFile() 159 if (dexfile == &other_dexfile) { in FindDexMethodIndexInOtherDexFile() 162 const char* mid_declaring_class_descriptor = dexfile->StringByTypeIdx(mid.class_idx_); in FindDexMethodIndexInOtherDexFile()
|
D | oat_file_assistant_test.cc | 1048 Handle<mirror::Class> dexfile( in TEST_F() local 1050 ASSERT_FALSE(dexfile.Get() == nullptr); in TEST_F() 1051 linker->EnsureInitialized(soa.Self(), dexfile, true, true); in TEST_F() 1054 soa.Self(), dexfile, "NO_DEXOPT_NEEDED", "I"); in TEST_F() 1057 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded, no_dexopt_needed->GetInt(dexfile.Get())); in TEST_F() 1060 soa.Self(), dexfile, "DEX2OAT_NEEDED", "I"); in TEST_F() 1063 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded, dex2oat_needed->GetInt(dexfile.Get())); in TEST_F() 1066 soa.Self(), dexfile, "PATCHOAT_NEEDED", "I"); in TEST_F() 1069 EXPECT_EQ(OatFileAssistant::kPatchOatNeeded, patchoat_needed->GetInt(dexfile.Get())); in TEST_F() 1072 soa.Self(), dexfile, "SELF_PATCHOAT_NEEDED", "I"); in TEST_F() [all …]
|