Searched refs:dex_file2 (Results 1 – 4 of 4) sorted by relevance
/art/compiler/ |
D | compiled_method_test.cc | 51 const DexFile* dex_file2 = reinterpret_cast<const DexFile*>(2); in TEST() local 55 LinkerPatch::MethodPatch(16u, dex_file2, 1000u), in TEST() 56 LinkerPatch::MethodPatch(16u, dex_file2, 1001u), // Index 3. in TEST() 59 LinkerPatch::CodePatch(16u, dex_file2, 1000u), in TEST() 60 LinkerPatch::CodePatch(16u, dex_file2, 1001u), in TEST() 63 LinkerPatch::RelativeCodePatch(16u, dex_file2, 1000u), in TEST() 64 LinkerPatch::RelativeCodePatch(16u, dex_file2, 1001u), in TEST() 67 LinkerPatch::TypePatch(16u, dex_file2, 1000u), in TEST() 68 LinkerPatch::TypePatch(16u, dex_file2, 1001u), in TEST() 73 LinkerPatch::DexCacheArrayPatch(16u, dex_file2, 3000u, 2000u), in TEST() [all …]
|
D | oat_test.cc | 545 ScratchFile dex_file2; in TestDexFileInput() local 549 std::unique_ptr<const DexFile> dex_file2_data = builder2.Build(dex_file2.GetFilename()); in TestDexFileInput() 553 success = dex_file2.GetFile()->WriteFully(&dex_file2_data->GetHeader(), in TestDexFileInput() 556 success = dex_file2.GetFile()->Flush() == 0; in TestDexFileInput() 558 input_filenames.push_back(dex_file2.GetFilename().c_str()); in TestDexFileInput() 642 ScratchFile dex_file2; in TestZipFileInput() local 646 std::unique_ptr<const DexFile> dex_file2_data = builder2.Build(dex_file2.GetFilename()); in TestZipFileInput() 650 success = dex_file2.GetFile()->WriteFully(&dex_file2_data->GetHeader(), in TestZipFileInput() 653 success = dex_file2.GetFile()->Flush() == 0; in TestZipFileInput()
|
/art/runtime/ |
D | art_method.cc | 115 const DexFile* dex_file2 = other->GetDexFile(); in HasSameNameAndSignature() local 116 const DexFile::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex()); in HasSameNameAndSignature() 117 if (!DexFileStringEquals(dex_file, mid.name_idx_, dex_file2, mid2.name_idx_)) { in HasSameNameAndSignature() 120 return dex_file->GetMethodSignature(mid) == dex_file2->GetMethodSignature(mid2); in HasSameNameAndSignature()
|
D | class_linker.cc | 5214 const DexFile& dex_file2, in DumpClasses() argument 5218 DumpClass(os, dex_file2, dex_class_def2, " (Runtime)"); in DumpClasses() 5227 const DexFile& dex_file2, in SimpleStructuralCheck() argument 5231 ClassDataItemIterator dex_data2(dex_file2, dex_file2.GetClassData(dex_class_def2)); in SimpleStructuralCheck() 5249 std::string class_dump = DumpClasses(dex_file1, dex_class_def1, dex_file2, dex_class_def2); in SimpleStructuralCheck() 5257 std::string class_dump = DumpClasses(dex_file1, dex_class_def1, dex_file2, dex_class_def2); in SimpleStructuralCheck() 5265 std::string class_dump = DumpClasses(dex_file1, dex_class_def1, dex_file2, dex_class_def2); in SimpleStructuralCheck() 5273 std::string class_dump = DumpClasses(dex_file1, dex_class_def1, dex_file2, dex_class_def2); in SimpleStructuralCheck()
|