Home
last modified time | relevance | path

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

/system/core/init/
Dservice_parser.cpp646 std::vector<std::string> str_args(args.begin() + 2, args.end()); in ParseSection() local
649 if (str_args[0] == "/sbin/watchdogd") { in ParseSection()
650 str_args[0] = "/system/bin/watchdogd"; in ParseSection()
654 if (str_args[0] == "/charger") { in ParseSection()
655 str_args[0] = "/system/bin/charger"; in ParseSection()
659 service_ = std::make_unique<Service>(name, restart_action_subcontext, filename, str_args); in ParseSection()
Dservice.cpp933 std::vector<std::string> str_args(args.begin() + command_arg, args.end()); in MakeTemporaryOneshotService() local
937 std::string name = "exec " + std::to_string(exec_count) + " (" + Join(str_args, " ") + ")"; in MakeTemporaryOneshotService()
972 nullptr, /*filename=*/"", str_args); in MakeTemporaryOneshotService()