Searched refs:IsAdpfProfileSupported (Results 1 – 6 of 6) sorted by relevance
61 if (!supported && HintManager::GetInstance()->IsAdpfProfileSupported(mode)) { in isModeSupported()89 if (!supported && HintManager::GetInstance()->IsAdpfProfileSupported(boost)) { in isBoostSupported()
212 if (!supported && HintManager::GetInstance()->IsAdpfProfileSupported(toString(type))) { in isModeSupported()280 if (!supported && HintManager::GetInstance()->IsAdpfProfileSupported(toString(type))) { in isBoostSupported()
39 MOCK_METHOD(bool, IsAdpfProfileSupported, (const std::string &name), (const));
135 bool IsAdpfProfileSupported(const std::string &name) const;
902 TEST_F(HintManagerTest, IsAdpfProfileSupported) { in TEST_F() argument909 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()
852 bool HintManager::IsAdpfProfileSupported(const std::string &profile_name) const { in IsAdpfProfileSupported() function in android::perfmgr::HintManager