Home
last modified time | relevance | path

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

/system/core/init/
Dservice_parser.cpp660 std::vector<std::string> str_args(args.begin() + 2, args.end()); in ParseSection() local
663 if (str_args[0] == "/sbin/watchdogd") { in ParseSection()
664 str_args[0] = "/system/bin/watchdogd"; in ParseSection()
668 if (str_args[0] == "/charger") { in ParseSection()
669 str_args[0] = "/system/bin/charger"; in ParseSection()
673 service_ = std::make_unique<Service>(name, restart_action_subcontext, filename, str_args); in ParseSection()
Dservice.cpp972 std::vector<std::string> str_args(args.begin() + command_arg, args.end()); in MakeTemporaryOneshotService() local
976 std::string name = "exec " + std::to_string(exec_count) + " (" + Join(str_args, " ") + ")"; in MakeTemporaryOneshotService()
1011 nullptr, /*filename=*/"", str_args); in MakeTemporaryOneshotService()