Home
last modified time | relevance | path

Searched refs:isBoostSupported (Results 1 – 18 of 18) sorted by relevance

/aosp12/frameworks/native/services/powermanager/tests/
H A DPowerHalWrapperAidlTest.cpp46 MOCK_METHOD(Status, isBoostSupported, (Boost boost, bool* ret), (override));
84 EXPECT_CALL(*mMockHal.get(), isBoostSupported(Eq(Boost::DISPLAY_UPDATE_IMMINENT), _)) in TEST_F()
98 EXPECT_CALL(*mMockHal.get(), isBoostSupported(Eq(Boost::INTERACTION), _)) in TEST_F()
104 EXPECT_CALL(*mMockHal.get(), isBoostSupported(Eq(Boost::DISPLAY_UPDATE_IMMINENT), _)) in TEST_F()
116 EXPECT_CALL(*mMockHal.get(), isBoostSupported(Eq(Boost::INTERACTION), _)) in TEST_F()
129 EXPECT_CALL(*mMockHal.get(), isBoostSupported(Eq(Boost::INTERACTION), _)) in TEST_F()
/aosp12/hardware/interfaces/power/aidl/vts/
H A DVtsHalPowerTargetTest.cpp139 TEST_P(PowerAidl, isBoostSupported) { in TEST_P() argument
142 ASSERT_TRUE(power->isBoostSupported(boost, &supported).isOk()); in TEST_P()
146 ASSERT_TRUE(power->isBoostSupported(boost, &supported).isOk()); in TEST_P()
/aosp12/hardware/google/interfaces/power/aidl_api/pixel-power-ext/1/google/hardware/power/extension/pixel/
H A DIPowerExt.aidl24 boolean isBoostSupported(in @utf8InCpp String boost); in isBoostSupported() method
/aosp12/hardware/google/interfaces/power/aidl_api/pixel-power-ext/current/google/hardware/power/extension/pixel/
H A DIPowerExt.aidl24 boolean isBoostSupported(in @utf8InCpp String boost); in isBoostSupported() method
/aosp12/hardware/google/interfaces/power/google/hardware/power/extension/pixel/
H A DIPowerExt.aidl68 boolean isBoostSupported(in @utf8InCpp String boost); in isBoostSupported() method
/aosp12/hardware/interfaces/power/aidl/aidl_api/android.hardware.power/1/android/hardware/power/
H A DIPower.aidl24 boolean isBoostSupported(in android.hardware.power.Boost type); in isBoostSupported() method
/aosp12/hardware/interfaces/power/aidl/android/hardware/power/
H A DIPower.aidl72 boolean isBoostSupported(in Boost type); in isBoostSupported() method
/aosp12/hardware/interfaces/power/aidl/aidl_api/android.hardware.power/2/android/hardware/power/
H A DIPower.aidl40 boolean isBoostSupported(in android.hardware.power.Boost type); in isBoostSupported() method
/aosp12/hardware/interfaces/power/aidl/aidl_api/android.hardware.power/current/android/hardware/power/
H A DIPower.aidl40 boolean isBoostSupported(in android.hardware.power.Boost type); in isBoostSupported() method
/aosp12/hardware/interfaces/power/aidl/default/
H A DPower.h32 ndk::ScopedAStatus isBoostSupported(Boost type, bool* _aidl_return) override;
H A DPower.cpp49 ndk::ScopedAStatus Power::isBoostSupported(Boost type, bool* _aidl_return) { in isBoostSupported() function in aidl::android::hardware::power::impl::example::Power
/aosp12/hardware/google/pixel/power-libperfmgr/aidl/
H A DPowerExt.h44 ndk::ScopedAStatus isBoostSupported(const std::string &boost, bool *_aidl_return) override;
H A DPowerExt.cpp73 ndk::ScopedAStatus PowerExt::isBoostSupported(const std::string &boost, bool *_aidl_return) { in isBoostSupported() function in aidl::google::hardware::power::impl::pixel::PowerExt
H A DPower.h47 ndk::ScopedAStatus isBoostSupported(Boost type, bool *_aidl_return) override;
H A DPower.cpp229 ndk::ScopedAStatus Power::isBoostSupported(Boost type, bool *_aidl_return) { in isBoostSupported() function in aidl::google::hardware::power::impl::pixel::Power
/aosp12/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DPowerAdvisor.cpp193 ret = mPowerHal->isBoostSupported(Boost::DISPLAY_UPDATE_IMMINENT, in AidlPowerHalWrapper()
/aosp12/frameworks/native/services/powermanager/benchmarks/
H A DPowerHalAidlBenchmarks.cpp134 runBenchmark(state, 0us, &IPower::isBoostSupported, boost, &isSupported); in BM_PowerHalAidlBenchmarks_isBoostSupported()
/aosp12/frameworks/native/services/powermanager/
H A DPowerHalWrapper.cpp188 auto isSupportedRet = mHandle->isBoostSupported(boost, &isSupported); in setBoost()