Searched refs:odex_file (Results 1 - 3 of 3) sorted by relevance

/art/dex2oat/
H A Ddex2oat_test.cc68 std::unique_ptr<OatFile> odex_file(OatFile::Open(odex_location.c_str(),
76 ASSERT_TRUE(odex_file.get() != nullptr) << error_msg;
78 CheckFilter(filter, odex_file->GetCompilerFilter());
85 std::unique_ptr<OatFile> odex_file(OatFile::Open(odex_location.c_str(),
93 ASSERT_TRUE(odex_file.get() == nullptr);
319 std::unique_ptr<OatFile> odex_file(OatFile::Open(odex_location.c_str(),
327 ASSERT_TRUE(odex_file.get() != nullptr) << error_msg;
331 // odex_file->GetCompilerFilter()));
336 for (const OatDexFile* oat_dex_file : odex_file->GetOatDexFiles()) {
349 EXPECT_EQ(odex_file
[all...]
/art/runtime/
H A Doat_file_assistant.cc147 const OatFile* odex_file = GetOdexFile(); local
148 if (odex_file != nullptr) {
149 CompilerFilter::Filter current = odex_file->GetCompilerFilter();
349 const OatFile* odex_file = GetOdexFile(); local
350 if (odex_file == nullptr) {
353 cached_odex_file_is_out_of_date_ = GivenOatFileIsOutOfDate(*odex_file);
366 const OatFile* odex_file = GetOdexFile(); local
367 if (odex_file == nullptr) {
370 cached_odex_file_is_up_to_date_ = GivenOatFileIsUpToDate(*odex_file);
377 const OatFile* odex_file local
872 const OatFile* odex_file = GetOdexFile(); local
911 const OatFile* odex_file = GetOdexFile(); local
916 const OatFile* odex_file = GetOdexFile(); local
[all...]
H A Doat_file_assistant_test.cc115 std::unique_ptr<OatFile> odex_file(OatFile::Open(odex_location.c_str(),
123 ASSERT_TRUE(odex_file.get() != nullptr) << error_msg;
124 EXPECT_EQ(pic, odex_file->IsPic());
125 EXPECT_EQ(with_patch_info, odex_file->HasPatchInfo());
126 EXPECT_EQ(filter, odex_file->GetCompilerFilter());
133 const OatHeader& oat_header = odex_file->GetOatHeader();
1204 std::string odex_file; local
1207 "/foo/bar/baz.jar", kArm, &odex_file, &error_msg)) << error_msg;
1208 EXPECT_EQ("/foo/bar/oat/arm/baz.odex", odex_file);
1211 "/foo/bar/baz.funnyext", kArm, &odex_file,
[all...]

Completed in 79 milliseconds