Searched defs:ActionManager (Results 1 - 2 of 2) sorted by relevance

/system/core/init/
H A Daction.h92 class ActionManager { class in namespace:android::init
94 static ActionManager& GetInstance();
97 ActionManager();
110 ActionManager(ActionManager const&) = delete;
111 void operator=(ActionManager const&) = delete;
121 ActionParser(ActionManager* action_manager)
129 ActionManager* action_manager_;
H A Daction.cpp239 ActionManager::ActionManager() : current_command_(0) { function in class:android::init::ActionManager
242 ActionManager& ActionManager::GetInstance() {
243 static ActionManager instance;
247 void ActionManager::AddAction(std::unique_ptr<Action> action) {
251 void ActionManager::QueueEventTrigger(const std::string& trigger) {
255 void ActionManager::QueuePropertyChange(const std::string& name, const std::string& value) {
259 void ActionManager::QueueAllPropertyActions() {
263 void ActionManager
[all...]

Completed in 157 milliseconds