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

/system/core/init/
H A Daction_manager.h29 class ActionManager { class in namespace:android::init
31 static ActionManager& GetInstance();
34 ActionManager();
47 ActionManager(ActionManager const&) = delete;
48 void operator=(ActionManager const&) = delete;
H A Daction_manager.cpp24 ActionManager::ActionManager() : current_command_(0) {} function in class:android::init::ActionManager
26 ActionManager& ActionManager::GetInstance() {
27 static ActionManager instance;
31 void ActionManager::AddAction(std::unique_ptr<Action> action) {
35 void ActionManager::QueueEventTrigger(const std::string& trigger) {
39 void ActionManager::QueuePropertyChange(const std::string& name, const std::string& value) {
43 void ActionManager::QueueAllPropertyActions() {
47 void ActionManager
[all...]

Completed in 47 milliseconds