Home
last modified time | relevance | path

Searched refs:DisplayPowerEvent (Results 1 – 14 of 14) sorted by relevance

/foundation/windowmanager/dm/test/systemtest/
Ddisplay_power_test.cpp35 virtual void OnDisplayPowerEvent(DisplayPowerEvent event, EventStatus status) in OnDisplayPowerEvent()
41 DisplayPowerEvent event_;
94 listener_->event_ = static_cast<DisplayPowerEvent>(-1); in SetUp()
271 ASSERT_EQ(DisplayPowerEvent::WAKE_UP, listener_->event_);
286 ASSERT_EQ(DisplayPowerEvent::WAKE_UP, listener_->event_);
301 ASSERT_EQ(DisplayPowerEvent::SLEEP, listener_->event_);
316 ASSERT_EQ(DisplayPowerEvent::SLEEP, listener_->event_);
332 ASSERT_EQ(DisplayPowerEvent::DISPLAY_OFF, listener_->event_);
348 ASSERT_EQ(DisplayPowerEvent::DISPLAY_ON, listener_->event_);
379DisplayPowerEvent expectedEvent = (stateToSet == DisplayState::OFF ? DisplayPowerEvent::DISPLAY_OF…
[all …]
/foundation/windowmanager/dmserver/src/
Ddisplay_power_controller.cpp55 …DisplayManagerAgentController::GetInstance().NotifyDisplayPowerEvent(DisplayPowerEvent::DISPLAY_ON, in SetDisplayState()
64 …DisplayManagerAgentController::GetInstance().NotifyDisplayPowerEvent(DisplayPowerEvent::DISPLAY_OF… in SetDisplayState()
87 …DisplayManagerAgentController::GetInstance().NotifyDisplayPowerEvent(DisplayPowerEvent::DESKTOP_RE… in NotifyDisplayEvent()
Ddisplay_manager_service.cpp279 …return DisplayManagerAgentController::GetInstance().NotifyDisplayPowerEvent(DisplayPowerEvent::WAK… in WakeUpBegin()
285 …return DisplayManagerAgentController::GetInstance().NotifyDisplayPowerEvent(DisplayPowerEvent::WAK… in WakeUpEnd()
293 …return DisplayManagerAgentController::GetInstance().NotifyDisplayPowerEvent(DisplayPowerEvent::SLE… in SuspendBegin()
299 …return DisplayManagerAgentController::GetInstance().NotifyDisplayPowerEvent(DisplayPowerEvent::SLE… in SuspendEnd()
Ddisplay_manager_agent_controller.cpp38 bool DisplayManagerAgentController::NotifyDisplayPowerEvent(DisplayPowerEvent event, EventStatus st… in NotifyDisplayPowerEvent()
Dabstract_screen_controller.cpp1105 state == ScreenPowerState::POWER_ON ? DisplayPowerEvent::DISPLAY_ON : in SetScreenPowerForAll()
1106 DisplayPowerEvent::DISPLAY_OFF, EventStatus::END); in SetScreenPowerForAll()
/foundation/windowmanager/interfaces/innerkits/dm/
Ddm_common.h73 enum class DisplayPowerEvent : uint32_t { enum
88 virtual void OnDisplayPowerEvent(DisplayPowerEvent event, EventStatus status) = 0;
/foundation/windowmanager/dm/src/zidl/
Ddisplay_manager_agent_stub.cpp36 DisplayPowerEvent event = static_cast<DisplayPowerEvent>(data.ReadUint32()); in OnRemoteRequest()
Ddisplay_manager_agent_proxy.cpp26 void DisplayManagerAgentProxy::NotifyDisplayPowerEvent(DisplayPowerEvent event, EventStatus status) in NotifyDisplayPowerEvent()
/foundation/windowmanager/dm/include/
Ddisplay_manager_agent_default.h28 void NotifyDisplayPowerEvent(DisplayPowerEvent event, EventStatus status) override {}; in NotifyDisplayPowerEvent()
/foundation/windowmanager/dmserver/include/
Ddisplay_manager_agent_controller.h34 bool NotifyDisplayPowerEvent(DisplayPowerEvent event, EventStatus status);
/foundation/windowmanager/dm/include/zidl/
Ddisplay_manager_agent_interface.h48 virtual void NotifyDisplayPowerEvent(DisplayPowerEvent event, EventStatus status) = 0;
Ddisplay_manager_agent_proxy.h29 virtual void NotifyDisplayPowerEvent(DisplayPowerEvent event, EventStatus status) override;
/foundation/windowmanager/dm/src/
Ddisplay_manager.cpp50 void NotifyDisplayPowerEvent(DisplayPowerEvent event, EventStatus status);
135 virtual void NotifyDisplayPowerEvent(DisplayPowerEvent event, EventStatus status) override in NotifyDisplayPowerEvent()
478 void DisplayManager::Impl::NotifyDisplayPowerEvent(DisplayPowerEvent event, EventStatus status) in NotifyDisplayPowerEvent()
/foundation/windowmanager/dm/test/unittest/
Ddisplay_power_unit_test.cpp31 virtual void OnDisplayPowerEvent(DisplayPowerEvent event, EventStatus status) {} in OnDisplayPowerEvent()