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

  /art/compiler/
compiled_method_test.cc 51 const DexFile* dex_file2 = reinterpret_cast<const DexFile*>(2);
57 LinkerPatch::RelativeMethodPatch(16u, dex_file2, 3000u, 1000u),
58 LinkerPatch::RelativeMethodPatch(16u, dex_file2, 3001u, 1000u),
59 LinkerPatch::RelativeMethodPatch(16u, dex_file2, 3000u, 1001u),
60 LinkerPatch::RelativeMethodPatch(16u, dex_file2, 3001u, 1001u),
65 LinkerPatch::MethodBssEntryPatch(16u, dex_file2, 3000u, 1000u),
66 LinkerPatch::MethodBssEntryPatch(16u, dex_file2, 3001u, 1000u),
67 LinkerPatch::MethodBssEntryPatch(16u, dex_file2, 3000u, 1001u),
68 LinkerPatch::MethodBssEntryPatch(16u, dex_file2, 3001u, 1001u),
71 LinkerPatch::CodePatch(16u, dex_file2, 1000u)
    [all...]
oat_test.cc 590 ScratchFile dex_file2; local
594 std::unique_ptr<const DexFile> dex_file2_data = builder2.Build(dex_file2.GetFilename());
598 success = dex_file2.GetFile()->WriteFully(&dex_file2_data->GetHeader(),
601 success = dex_file2.GetFile()->Flush() == 0;
603 input_filenames.push_back(dex_file2.GetFilename().c_str());
698 ScratchFile dex_file2; local
702 std::unique_ptr<const DexFile> dex_file2_data = builder2.Build(dex_file2.GetFilename());
706 success = dex_file2.GetFile()->WriteFully(&dex_file2_data->GetHeader(),
709 success = dex_file2.GetFile()->Flush() == 0;
    [all...]
  /art/compiler/utils/
string_reference_test.cc 43 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.get(), dex::StringIndex(index2))
    [all...]
  /art/runtime/
art_method.cc 196 const DexFile* dex_file2 = other->GetDexFile(); local
197 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex());
198 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) {
201 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2);
    [all...]

Completed in 641 milliseconds