Home
last modified time | relevance | path

Searched refs:art_exec_args (Results 1 – 2 of 2) sorted by relevance

/art/artd/
Dartd.cc620 CmdlineBuilder art_exec_args = OR_RETURN_FATAL(GetArtExecCmdlineBuilder()); in isProfileUsable() local
641 art_exec_args.Add("--keep-fds=%s", fd_logger.GetFds()).Add("--").Concat(std::move(args)); in isProfileUsable()
643 LOG(INFO) << "Running profman: " << Join(art_exec_args.Get(), /*separator=*/" ") in isProfileUsable()
646 Result<int> result = ExecAndReturnCode(art_exec_args.Get(), kShortTimeoutSec); in isProfileUsable()
672 CmdlineBuilder art_exec_args = OR_RETURN_FATAL(GetArtExecCmdlineBuilder()); in CopyAndRewriteProfileImpl() local
689 art_exec_args.Add("--keep-fds=%s", fd_logger.GetFds()).Add("--").Concat(std::move(args)); in CopyAndRewriteProfileImpl()
691 LOG(INFO) << "Running profman: " << Join(art_exec_args.Get(), /*separator=*/" ") in CopyAndRewriteProfileImpl()
694 Result<int> result = ExecAndReturnCode(art_exec_args.Get(), kShortTimeoutSec); in CopyAndRewriteProfileImpl()
839 CmdlineBuilder art_exec_args = OR_RETURN_FATAL(GetArtExecCmdlineBuilder()); in mergeProfiles() local
910 art_exec_args.Add("--keep-fds=%s", fd_logger.GetFds()).Add("--").Concat(std::move(args)); in mergeProfiles()
[all …]
Dartd.h296 /*out*/ art::tools::CmdlineBuilder& art_exec_args,