Home
last modified time | relevance | path

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

/system/core/init/
Dservice_parser.cpp599 std::vector<std::string> str_args(args.begin() + 2, args.end()); in ParseSection() local
602 if (str_args[0] == "/sbin/watchdogd") { in ParseSection()
603 str_args[0] = "/system/bin/watchdogd"; in ParseSection()
607 if (str_args[0] == "/charger") { in ParseSection()
608 str_args[0] = "/system/bin/charger"; in ParseSection()
612 service_ = std::make_unique<Service>(name, restart_action_subcontext, str_args, from_apex_); in ParseSection()
Dservice.cpp753 std::vector<std::string> str_args(args.begin() + command_arg, args.end()); in MakeTemporaryOneshotService() local
757 std::string name = "exec " + std::to_string(exec_count) + " (" + Join(str_args, " ") + ")"; in MakeTemporaryOneshotService()
792 nullptr, str_args, false); in MakeTemporaryOneshotService()