Home
last modified time | relevance | path

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

/art/dex2oat/
Ddex2oat_test.cc747 std::string vdex_location = GetOdexDir() + "/DexOdexNoOat.vdex"; in RunTestVDex() local
751 std::unique_ptr<File> vdex_file1(OS::CreateEmptyFile(vdex_location.c_str())); in RunTestVDex()
752 CHECK(vdex_file1 != nullptr) << vdex_location; in RunTestVDex()
871 std::string vdex_location = GetOdexDir() + "/UnquickenMultiDex.vdex"; in RunUnquickenMultiDex() local
874 std::unique_ptr<File> vdex_file1(OS::CreateEmptyFile(vdex_location.c_str())); in RunUnquickenMultiDex()
875 CHECK(vdex_file1 != nullptr) << vdex_location; in RunUnquickenMultiDex()
908 std::string vdex_location = GetOdexDir() + "/UnquickenMultiDex.vdex"; in RunUnquickenMultiDexCDex() local
912 std::unique_ptr<File> vdex_file1(OS::CreateEmptyFile(vdex_location.c_str())); in RunUnquickenMultiDexCDex()
914 CHECK(vdex_file1 != nullptr) << vdex_location; in RunUnquickenMultiDexCDex()
1889 const std::string vdex_location = out_dir + "/base.vdex"; in TEST_F() local
[all …]
Ddex2oat.cc1341 std::string vdex_location = ReplaceFileExtension(oat_location_, "vdex"); in OpenFile() local
1343 DupCloexec(output_vdex_fd_), vdex_location, /* check_usage */ true)); in OpenFile()
1345 PLOG(ERROR) << "Failed to create vdex file: " << vdex_location; in OpenFile()
1352 PLOG(ERROR) << "Truncating vdex file " << vdex_location << " failed."; in OpenFile()
/art/runtime/
Doat_file_assistant_test.cc374 std::string vdex_location = GetScratchDir() + "/OatUpToDate.vdex"; in TEST_F() local
383 android::base::unique_fd vdex_fd(open(vdex_location.c_str(), O_RDONLY | O_CLOEXEC)); in TEST_F()
413 std::string vdex_location = GetScratchDir() + "/OatUpToDate.vdex"; in TEST_F() local
421 android::base::unique_fd vdex_fd(open(vdex_location.c_str(), O_RDONLY | O_CLOEXEC)); in TEST_F()
528 std::string vdex_location = GetOdexDir() + "/EmptyVdexOdex.vdex"; in TEST_F() local
531 ScratchFile vdex_file(vdex_location.c_str()); in TEST_F()
Doat_file.cc233 const std::string& vdex_location, in OpenOatFile() argument
258 if (!ret->LoadVdex(vdex_fd, vdex_location, writable, low_4gb, error_msg)) { in OpenOatFile()
1660 std::string vdex_location = GetVdexFilename(oat_location); in Open() local
1665 vdex_location, in Open()