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(const std::vector<std::string>& args, int line);
65 void AddCommand(BuiltinFunction f, const std::vector<std::string>& args, int line);
Daction.cpp88 Result<Success> Action::AddCommand(const std::vector<std::string>& args, int line) { in AddCommand() function in android::init::Action
100 void Action::AddCommand(BuiltinFunction f, const std::vector<std::string>& args, int line) { in AddCommand() function in android::init::Action
Daction_manager.cpp52 action->AddCommand(func, name_vector, 0); in QueueBuiltinAction()
Daction_parser.cpp146 return action_ ? action_->AddCommand(std::move(args), line) : Success(); in ParseLineSection()
Dservice.cpp560 if (auto result = onrestart_.AddCommand(str_args, line); !result) { in ParseOnrestart()