Home
last modified time | relevance | path

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

/system/core/init/
Daction.h66 Result<void> AddCommand(std::vector<std::string>&& args, int line);
67 void AddCommand(BuiltinFunction f, std::vector<std::string>&& args, int line);
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
Daction_manager.cpp61 action->AddCommand(std::move(func), {name}, 0); in QueueBuiltinAction()
Daction_parser.cpp170 return action_ ? action_->AddCommand(std::move(args), line) : Result<void>{}; in ParseLineSection()
Dservice_parser.cpp296 if (auto result = service_->onrestart_.AddCommand(std::move(args), line); !result.ok()) { in ParseOnrestart()