Home
last modified time | relevance | path

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

/system/core/init/
Daction.h64 Result<Success> AddCommand(std::vector<std::string>&& args, int line);
65 void AddCommand(BuiltinFunction f, std::vector<std::string>&& args, int line);
Daction.cpp86 Result<Success> Action::AddCommand(std::vector<std::string>&& args, int line) { in AddCommand() function in android::init::Action
98 void Action::AddCommand(BuiltinFunction f, std::vector<std::string>&& args, int line) { in AddCommand() function in android::init::Action
Daction_manager.cpp50 action->AddCommand(func, {name}, 0); in QueueBuiltinAction()
Daction_parser.cpp149 return action_ ? action_->AddCommand(std::move(args), line) : Success(); in ParseLineSection()
Dservice.cpp599 if (auto result = onrestart_.AddCommand(std::move(args), line); !result) { in ParseOnrestart()