Home
last modified time | relevance | path

Searched refs:current_action (Results 1 – 3 of 3) sorted by relevance

/system/update_engine/common/
Daction_processor_unittest.cc125 EXPECT_EQ(action_processor_.current_action(), &action_); in TEST_F()
146 EXPECT_EQ(nullptr, action_processor_.current_action()); in TEST_F()
157 EXPECT_EQ(&action1, action_processor_.current_action()); in TEST_F()
160 EXPECT_EQ(&action2, action_processor_.current_action()); in TEST_F()
163 EXPECT_EQ(nullptr, action_processor_.current_action()); in TEST_F()
208 EXPECT_EQ(&mock_action_, action_processor_.current_action()); in TEST_F()
261 EXPECT_EQ(nullptr, action_processor_.current_action()); in TEST_F()
Daction_processor.h84 AbstractAction* current_action() const { in current_action() function
Daction.h117 return processor_->current_action() == this; in IsRunning()