Home
last modified time | relevance | path

Searched refs:actions_ (Results 1 – 4 of 4) sorted by relevance

/aosp14/system/core/init/
H A Daction_manager.cpp28 for (const auto& action : actions_) { in CheckAllCommands()
40 actions_.emplace_back(std::move(action)); in AddAction()
64 actions_.emplace_back(std::move(action)); in QueueBuiltinAction()
72 for (const auto& action : actions_) { in ExecuteOneCommand()
105 actions_.erase(std::remove_if(actions_.begin(), actions_.end(), eraser), in ExecuteOneCommand()
106 actions_.end()); in ExecuteOneCommand()
117 for (const auto& a : actions_) { in DumpState()
H A Daction_manager.h42 actions_.erase(std::remove_if(actions_.begin(), actions_.end(), predicate), actions_.end()); in RemoveActionIf()
52 auto size() const { return actions_.size(); } in size()
58 std::vector<std::unique_ptr<Action>> actions_; variable
/aosp14/frameworks/base/tools/aapt2/xml/
H A DXmlActionExecutor.cpp42 actions_.emplace_back(std::bind(wrapper_one, std::move(f), std::placeholders::_1, in Action()
47 actions_.emplace_back(std::bind(wrapper_two, std::move(f), std::placeholders::_1, in Action()
52 actions_.emplace_back(std::bind(wrapper_three, std::move(f), std::placeholders::_1, in Action()
67 for (const ActionFuncWithPolicyAndDiag& action : actions_) { in Execute()
H A DXmlActionExecutor.h74 std::vector<ActionFuncWithPolicyAndDiag> actions_; variable