Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/power/
DSilentModeHandler.java115 mService.notifySilentModeChange(silentMode); in init()
196 mService.notifySilentModeChange(silentMode); in switchToForcedMode()
250 mService.notifySilentModeChange(newSilentMode); in startMonitoringSilentModeHwState()
DCarPowerManagementService.java1140 void notifySilentModeChange(boolean silent) { in notifySilentModeChange() method in CarPowerManagementService
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/power/
DSilentModeHandlerUnitTest.java136 .notifySilentModeChange(false); in testSetSilentMode_normalSilentToForcedNonSilent()
143 .notifySilentModeChange(true); in testSetSilentMode_normalNonSilentToForcedSilent()
196 .notifySilentModeChange(!initSilentMode); in testSetSilentMode_toNonForced()
/packages/services/Car/cpp/powerpolicy/server/tests/
DSilentModeHandlerTest.cpp117 MOCK_METHOD(void, notifySilentModeChange, (const bool silent), (override));
152 EXPECT_CALL(*carPowerPolicyServer, notifySilentModeChange(_)).Times(0); in TEST_F()
/packages/services/Car/cpp/powerpolicy/server/src/
DSilentModeHandler.cpp85 mSilentModeChangeHandler->notifySilentModeChange(mSilentModeByHwState); in init()
212 mSilentModeChangeHandler->notifySilentModeChange(newSilentMode); in handleSilentModeHwStateChange()
DCarPowerPolicyServer.h142 virtual void notifySilentModeChange(const bool isSilent) = 0;
193 void notifySilentModeChange(const bool isSilent);
DCarPowerPolicyServer.cpp551 void CarPowerPolicyServer::notifySilentModeChange(const bool isSilent) { in notifySilentModeChange() function in android::frameworks::automotive::powerpolicy::CarPowerPolicyServer