Home
last modified time | relevance | path

Searched refs:GetApexDataOdexFilename (Results 1 – 5 of 5) sorted by relevance

/art/libartbase/base/
Dfile_utils_test.cc183 TEST_F(FileUtilsTest, GetApexDataOdexFilename) { in TEST_F() argument
188 GetApexDataOdexFilename("/data/some/code.dex", InstructionSet::kArm)); in TEST_F()
191 EXPECT_EQ(std::string{}, GetApexDataOdexFilename(art_apex_jar.c_str(), InstructionSet::kArm)); in TEST_F()
195 EXPECT_EQ(std::string{}, GetApexDataOdexFilename(i18n_jar.c_str(), InstructionSet::kArm)); in TEST_F()
200 GetApexDataOdexFilename("/system/framework/cookie.jar", InstructionSet::kX86)); in TEST_F()
240 EXPECT_EQ(accompanying_odex_file, GetApexDataOdexFilename(jar, isa)); in TEST_F()
Dfile_utils.h98 std::string GetApexDataOdexFilename(std::string_view location, InstructionSet isa);
Dfile_utils.cc461 std::string GetApexDataOdexFilename(std::string_view location, InstructionSet isa) { in GetApexDataOdexFilename() function
/art/odrefresh/
Dodrefresh.cc724 GetApexDataOdexFilename(jar_path, config_.GetSystemServerIsa())); in VerifySystemServerArtifactsAreUpToDate()
1161 CHECK_EQ(artifacts.OatPath(), GetApexDataOdexFilename(jar.c_str(), isa)); in CompileSystemServerArtifacts()
/art/runtime/
Doat_file_assistant.cc567 const std::string apex_data_file = GetApexDataOdexFilename(location, isa); in DexLocationToOatFilename()