Home
last modified time | relevance | path

Searched refs:hint_actions (Results 1 – 2 of 2) sorted by relevance

/hardware/google/pixel/power-libperfmgr/libperfmgr/tests/
DHintManagerTest.cc547 EXPECT_EQ(1u, actions["MASK_LAUNCH_MODE"].hint_actions.size()); in TEST_F()
548 EXPECT_EQ(HintActionType::MaskHint, actions["MASK_LAUNCH_MODE"].hint_actions[0].type); in TEST_F()
549 EXPECT_TRUE("LAUNCH" == actions["MASK_LAUNCH_MODE"].hint_actions[0].value); in TEST_F()
551 EXPECT_EQ(1u, actions["DO_LAUNCH_MODE"].hint_actions.size()); in TEST_F()
552 EXPECT_EQ(HintActionType::DoHint, actions["DO_LAUNCH_MODE"].hint_actions[0].type); in TEST_F()
553 EXPECT_TRUE("LAUNCH" == actions["DO_LAUNCH_MODE"].hint_actions[0].value); in TEST_F()
555 EXPECT_EQ(1u, actions["END_LAUNCH_MODE"].hint_actions.size()); in TEST_F()
556 EXPECT_EQ(HintActionType::EndHint, actions["END_LAUNCH_MODE"].hint_actions[0].type); in TEST_F()
557 EXPECT_TRUE("LAUNCH" == actions["END_LAUNCH_MODE"].hint_actions[0].value); in TEST_F()
/hardware/google/pixel/power-libperfmgr/libperfmgr/include/perfmgr/
DHintManager.h69 std::vector<HintAction> hint_actions; member