Searched defs:dex_file2 (Results 1 - 4 of 4) sorted by relevance

/art/compiler/linker/
H A Dlinker_patch_test.cc26 const DexFile* dex_file2 = reinterpret_cast<const DexFile*>(2); local
32 LinkerPatch::RelativeMethodPatch(16u, dex_file2, 3000u, 1000u),
33 LinkerPatch::RelativeMethodPatch(16u, dex_file2, 3001u, 1000u),
34 LinkerPatch::RelativeMethodPatch(16u, dex_file2, 3000u, 1001u),
35 LinkerPatch::RelativeMethodPatch(16u, dex_file2, 3001u, 1001u),
40 LinkerPatch::MethodBssEntryPatch(16u, dex_file2, 3000u, 1000u),
41 LinkerPatch::MethodBssEntryPatch(16u, dex_file2, 3001u, 1000u),
42 LinkerPatch::MethodBssEntryPatch(16u, dex_file2, 3000u, 1001u),
43 LinkerPatch::MethodBssEntryPatch(16u, dex_file2, 3001u, 1001u),
46 LinkerPatch::CodePatch(16u, dex_file2, 100
[all...]
/art/libdexfile/dex/
H A Dstring_reference_test.cc43 std::unique_ptr<const DexFile> dex_file2 = builder2.Build("dummy location 2"); local
44 ASSERT_EQ(1u, dex_file2->NumStringIds());
45 ASSERT_STREQ("String2", dex_file2->GetStringData(dex_file2->GetStringId(dex::StringIndex(0))));
46 StringReference sr2(dex_file2.get(), dex::StringIndex(0));
92 std::unique_ptr<const DexFile> dex_file2 = builder2.Build("dummy location 1"); local
93 ASSERT_EQ(arraysize(kDexFile2Strings), dex_file2->NumStringIds());
96 dex_file2->GetStringData(dex_file2->GetStringId(dex::StringIndex(index))));
103 StringReference sr2(dex_file2
[all...]
/art/dex2oat/linker/
H A Doat_writer_test.cc600 ScratchFile dex_file2; local
604 std::unique_ptr<const DexFile> dex_file2_data = builder2.Build(dex_file2.GetFilename());
608 success = dex_file2.GetFile()->WriteFully(&dex_file2_data->GetHeader(),
611 success = dex_file2.GetFile()->Flush() == 0;
613 input_filenames.push_back(dex_file2.GetFilename().c_str());
726 ScratchFile dex_file2; local
730 std::unique_ptr<const DexFile> dex_file2_data = builder2.Build(dex_file2.GetFilename());
734 success = dex_file2.GetFile()->WriteFully(&dex_file2_data->GetHeader(),
737 success = dex_file2.GetFile()->Flush() == 0;
/art/runtime/
H A Dart_method.cc204 const DexFile* dex_file2 = other->GetDexFile(); local
205 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
206 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
209 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);

Completed in 86 milliseconds