Home
last modified time | relevance | path

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

/art/dex2oat/
Ddex2oat_test.cc777 std::string vdex_location = GetOdexDir() + "/DexOdexNoOat.vdex"; in RunTestVDex() local
781 std::unique_ptr<File> vdex_file1(OS::CreateEmptyFile(vdex_location.c_str())); in RunTestVDex()
782 CHECK(vdex_file1 != nullptr) << vdex_location; in RunTestVDex()
902 std::string vdex_location = GetOdexDir() + "/UnquickenMultiDex.vdex"; in RunUnquickenMultiDex() local
905 std::unique_ptr<File> vdex_file1(OS::CreateEmptyFile(vdex_location.c_str())); in RunUnquickenMultiDex()
906 CHECK(vdex_file1 != nullptr) << vdex_location; in RunUnquickenMultiDex()
939 std::string vdex_location = GetOdexDir() + "/UnquickenMultiDex.vdex"; in RunUnquickenMultiDexCDex() local
943 std::unique_ptr<File> vdex_file1(OS::CreateEmptyFile(vdex_location.c_str())); in RunUnquickenMultiDexCDex()
945 CHECK(vdex_file1 != nullptr) << vdex_location; in RunUnquickenMultiDexCDex()
1857 const std::string vdex_location = out_dir + "/base.vdex"; in TEST_F() local
[all …]
Ddex2oat.cc1399 std::string vdex_location = ReplaceFileExtension(oat_location_, "vdex"); in OpenFile() local
1400 … std::unique_ptr<File> vdex_file(new File(output_vdex_fd_, vdex_location, /* check_usage */ true)); in OpenFile()
1402 PLOG(ERROR) << "Failed to create vdex file: " << vdex_location; in OpenFile()
1410 PLOG(ERROR) << "Truncating vdex file " << vdex_location << " failed."; in OpenFile()
/art/runtime/
Doat_file_assistant_test.cc261 std::string vdex_location = GetScratchDir() + "/OatUpToDate.vdex"; in TEST_F() local
272 android::base::unique_fd vdex_fd(open(vdex_location.c_str(), O_RDONLY)); in TEST_F()
302 std::string vdex_location = GetScratchDir() + "/OatUpToDate.vdex"; in TEST_F() local
312 android::base::unique_fd vdex_fd(open(vdex_location.c_str(), O_RDONLY)); in TEST_F()
421 std::string vdex_location = GetOdexDir() + "/EmptyVdexOdex.vdex"; in TEST_F() local
424 ScratchFile vdex_file(vdex_location.c_str()); in TEST_F()
Doat_file.cc231 const std::string& vdex_location, in OpenOatFile() argument
255 if (!ret->LoadVdex(vdex_fd, vdex_location, writable, low_4gb, error_msg)) { in OpenOatFile()
1487 std::string vdex_location = GetVdexFilename(oat_location); in Open() local
1492 vdex_location, in Open()