Lines Matching refs:artifacts
370 bool ArtifactsExist(const OdrArtifacts& artifacts, in ArtifactsExist() argument
374 std::vector<const char*> paths{artifacts.OatPath().c_str(), artifacts.VdexPath().c_str()}; in ArtifactsExist()
376 paths.push_back(artifacts.ImagePath().c_str()); in ArtifactsExist()
1043 OdrArtifacts artifacts = OdrArtifacts::ForBootImage(path); in PrimaryBootImageExist() local
1044 if (!ArtifactsExist(artifacts, /*check_art_file=*/true, error_msg, checked_artifacts)) { in PrimaryBootImageExist()
1066 OdrArtifacts artifacts = OdrArtifacts::ForBootImage(path); in BootImageMainlineExtensionExist() local
1067 return ArtifactsExist(artifacts, /*check_art_file=*/true, error_msg, checked_artifacts); in BootImageMainlineExtensionExist()
1077 const OdrArtifacts artifacts = OdrArtifacts::ForSystemServer(image_location); in SystemServerArtifactsExist() local
1081 if (!ArtifactsExist(artifacts, check_art_file, &error_msg_tmp, checked_artifacts)) { in SystemServerArtifactsExist()
1707 const OdrArtifacts& artifacts, in RunDex2oat() argument
1756 args.Add("--oat-location=%s", artifacts.OatPath()); in RunDex2oat()
1758 std::make_pair(artifacts.ImagePath(), artifacts.ImageKind()), in RunDex2oat()
1759 std::make_pair(artifacts.OatPath(), "oat"), in RunDex2oat()
1760 std::make_pair(artifacts.VdexPath(), "output-vdex")}; in RunDex2oat()
1762 std::string install_location = Dirname(artifacts.OatPath()); in RunDex2oat()
1958 OdrArtifacts artifacts = OdrArtifacts::ForBootImage(path); in CompileBootClasspath() local
1959 unlink(artifacts.ImagePath().c_str()); in CompileBootClasspath()
1960 unlink(artifacts.OatPath().c_str()); in CompileBootClasspath()
1961 unlink(artifacts.VdexPath().c_str()); in CompileBootClasspath()