Home
last modified time | relevance | path

Searched refs:AddCommand (Results 1 – 5 of 5) sorted by relevance

/aosp12/system/core/init/
H A Daction.h64 Result<void> AddCommand(std::vector<std::string>&& args, int line);
65 void AddCommand(BuiltinFunction f, std::vector<std::string>&& args, int line);
H A Daction.cpp111 Result<void> Action::AddCommand(std::vector<std::string>&& args, int line) { in AddCommand() function in android::init::Action
126 void Action::AddCommand(BuiltinFunction f, std::vector<std::string>&& args, int line) { in AddCommand() function in android::init::Action
H A Daction_manager.cpp61 action->AddCommand(std::move(func), {name}, 0); in QueueBuiltinAction()
H A Daction_parser.cpp162 return action_ ? action_->AddCommand(std::move(args), line) : Result<void>{}; in ParseLineSection()
H A Dservice_parser.cpp276 if (auto result = service_->onrestart_.AddCommand(std::move(args), line); !result.ok()) { in ParseOnrestart()