Home
last modified time | relevance | path

Searched refs:vdex_location (Results 1 – 4 of 4) sorted by relevance

/art/dex2oat/
Ddex2oat_test.cc759 std::string vdex_location = GetOdexDir() + "/DexOdexNoOat.vdex"; in RunTestVDex() local
763 std::unique_ptr<File> vdex_file1(OS::CreateEmptyFile(vdex_location.c_str())); in RunTestVDex()
764 CHECK(vdex_file1 != nullptr) << vdex_location; in RunTestVDex()
882 std::string vdex_location = GetOdexDir() + "/UnquickenMultiDex.vdex"; in RunUnquickenMultiDex() local
885 std::unique_ptr<File> vdex_file1(OS::CreateEmptyFile(vdex_location.c_str())); in RunUnquickenMultiDex()
886 CHECK(vdex_file1 != nullptr) << vdex_location; in RunUnquickenMultiDex()
929 std::string vdex_location = GetOdexDir() + "/UnquickenMultiDex.vdex"; in RunUnquickenMultiDexCDex() local
933 std::unique_ptr<File> vdex_file1(OS::CreateEmptyFile(vdex_location.c_str())); in RunUnquickenMultiDexCDex()
935 CHECK(vdex_file1 != nullptr) << vdex_location; in RunUnquickenMultiDexCDex()
1909 const std::string vdex_location = out_dir + "/base.vdex"; in TEST_F() local
[all …]
Ddex2oat.cc1548 std::string vdex_location = ReplaceFileExtension(oat_location_, "vdex"); in OpenFile() local
1550 DupCloexec(output_vdex_fd_), vdex_location, /* check_usage */ true)); in OpenFile()
1552 PLOG(ERROR) << "Failed to create vdex file: " << vdex_location; in OpenFile()
1559 PLOG(ERROR) << "Truncating vdex file " << vdex_location << " failed."; in OpenFile()
/art/runtime/
Doat_file_assistant_test.cc401 std::string vdex_location = GetScratchDir() + "/OatUpToDate.vdex"; in TEST_F() local
410 android::base::unique_fd vdex_fd(open(vdex_location.c_str(), O_RDONLY | O_CLOEXEC)); in TEST_F()
440 std::string vdex_location = GetScratchDir() + "/OatUpToDate.vdex"; in TEST_F() local
448 android::base::unique_fd vdex_fd(open(vdex_location.c_str(), O_RDONLY | O_CLOEXEC)); in TEST_F()
555 std::string vdex_location = GetOdexDir() + "/EmptyVdexOdex.vdex"; in TEST_F() local
558 ScratchFile vdex_file(vdex_location.c_str()); in TEST_F()
Doat_file.cc239 const std::string& vdex_location, in OpenOatFile() argument
264 if (!ret->LoadVdex(vdex_fd, vdex_location, writable, low_4gb, error_msg)) { in OpenOatFile()
1697 std::string vdex_location = GetVdexFilename(oat_location); in Open() local
1702 vdex_location, in Open()