Home
last modified time | relevance | path

Searched refs:notifySilentModeChange (Results 1 – 7 of 7) sorted by relevance

/packages/services/Car/cpp/powerpolicy/server/src/
DSilentModeHandler.cpp121 mSilentModeChangeHandler->notifySilentModeChange(mSilentModeByHwState); in init()
256 mSilentModeChangeHandler->notifySilentModeChange(newSilentMode); in handleSilentModeHwStateChange()
299 mSilentModeChangeHandler->notifySilentModeChange(silent); in switchToForcedMode()
DCarPowerPolicyServer.h174 virtual void notifySilentModeChange(const bool isSilent) = 0;
238 void notifySilentModeChange(const bool isSilent);
DCarPowerPolicyServer.cpp1044 void CarPowerPolicyServer::notifySilentModeChange(const bool isSilent) { in notifySilentModeChange() function in android::frameworks::automotive::powerpolicy::CarPowerPolicyServer
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/power/
DSilentModeHandlerUnitTest.java141 .notifySilentModeChange(false); in testSetSilentMode_normalSilentToForcedNonSilent()
150 .notifySilentModeChange(true); in testSetSilentMode_normalNonSilentToForcedSilent()
223 .notifySilentModeChange(!initSilentMode); in testSetSilentMode_toNonForced()
/packages/services/Car/service/src/com/android/car/power/
DSilentModeHandler.java143 mService.notifySilentModeChange(silentMode); in init()
248 mService.notifySilentModeChange(silentMode); in switchToForcedMode()
307 mService.notifySilentModeChange(newSilentMode); in startMonitoringSilentModeHwState()
DCarPowerManagementService.java2160 void notifySilentModeChange(boolean silent) { in notifySilentModeChange() method in CarPowerManagementService
/packages/services/Car/cpp/powerpolicy/server/tests/
DSilentModeHandlerTest.cpp115 MOCK_METHOD(void, notifySilentModeChange, (const bool silent), (override));
135 EXPECT_CALL(*carPowerPolicyServer, notifySilentModeChange(_)).Times(0); in TEST_F()