Searched refs:art_path (Results 1 – 2 of 2) sorted by relevance
/frameworks/native/cmds/installd/ |
D | otapreopt.cpp | 317 std::string art_path = isa_path + "/system@framework@boot.art"; in PrepareBootImage() local 320 if (access(art_path.c_str(), F_OK) == 0 && access(oat_path.c_str(), F_OK) == 0) { in PrepareBootImage() 353 return PatchoatBootImage(art_path, isa); in PrepareBootImage() 356 return Dex2oatBootImage(boot_classpath_, art_path, oat_path, isa); in PrepareBootImage() 422 bool PatchoatBootImage(const std::string& art_path, const char* isa) const { in PatchoatBootImage() argument 429 cmd.push_back(StringPrintf("--output-image-file=%s", art_path.c_str())); in PatchoatBootImage() 446 const std::string& art_path, in Dex2oatBootImage() argument 452 cmd.push_back(StringPrintf("--image=%s", art_path.c_str())); in Dex2oatBootImage()
|
D | commands.cpp | 1433 std::string art_path = oat_path; in create_image_filename() local 1434 art_path.replace(art_path.length() - strlen("dex"), strlen("dex"), "art"); in create_image_filename() 1435 CHECK(EndsWith(art_path, ".art")); in create_image_filename() 1436 return art_path; in create_image_filename() 1443 std::string art_path = oat_path; in create_image_filename() local 1444 art_path.replace(odex_pos, strlen(".odex"), ".art"); in create_image_filename() 1445 CHECK_NE(art_path.find(".art"), std::string::npos); in create_image_filename() 1446 return art_path; in create_image_filename()
|