Home
last modified time | relevance | path

Searched refs:IsAdpfProfileSupported (Results 1 – 6 of 6) sorted by relevance

/hardware/google/pixel/power-libperfmgr/aidl/
DPowerExt.cpp61 if (!supported && HintManager::GetInstance()->IsAdpfProfileSupported(mode)) { in isModeSupported()
89 if (!supported && HintManager::GetInstance()->IsAdpfProfileSupported(boost)) { in isBoostSupported()
DPower.cpp212 if (!supported && HintManager::GetInstance()->IsAdpfProfileSupported(toString(type))) { in isModeSupported()
280 if (!supported && HintManager::GetInstance()->IsAdpfProfileSupported(toString(type))) { in isBoostSupported()
/hardware/google/pixel/power-libperfmgr/aidl/tests/mocks/
DMockHintManager.h39 MOCK_METHOD(bool, IsAdpfProfileSupported, (const std::string &name), (const));
/hardware/google/pixel/power-libperfmgr/libperfmgr/include/perfmgr/
DHintManager.h135 bool IsAdpfProfileSupported(const std::string &name) const;
/hardware/google/pixel/power-libperfmgr/libperfmgr/tests/
DHintManagerTest.cc902 TEST_F(HintManagerTest, IsAdpfProfileSupported) { in TEST_F() argument
909 EXPECT_FALSE(hm->IsAdpfProfileSupported("NoSuchProfile")); in TEST_F()
910 EXPECT_TRUE(hm->IsAdpfProfileSupported("REFRESH_60FPS")); in TEST_F()
911 EXPECT_TRUE(hm->IsAdpfProfileSupported("REFRESH_120FPS")); in TEST_F()
/hardware/google/pixel/power-libperfmgr/libperfmgr/
DHintManager.cc852 bool HintManager::IsAdpfProfileSupported(const std::string &profile_name) const { in IsAdpfProfileSupported() function in android::perfmgr::HintManager