Home
last modified time | relevance | path

Searched refs:UIServiceRunningState (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/services/uiservice/test/unittest/phone/ui_mgr_service_test/
H A Dui_mgr_service_test.cpp56 const UIServiceRunningState testValue = UIServiceRunningState::STATE_NOT_START;
91 const UIServiceRunningState testValue = UIServiceRunningState::STATE_RUNNING;
206 const UIServiceRunningState testValue = UIServiceRunningState::STATE_NOT_START;
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/services/uiservice/test/unittest/phone/ui_service_mgr_client_test/
H A Dmock_ui_mgr_service.h73 if (state_ == UIServiceRunningState::STATE_RUNNING) { in OnStart()
79 state_ = UIServiceRunningState::STATE_RUNNING; in OnStart()
87 state_ = UIServiceRunningState::STATE_NOT_START; in OnStop()
116 UIServiceRunningState state_;
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/services/uiservice/include/
H A Dui_mgr_service.h36 enum class UIServiceRunningState { STATE_NOT_START, STATE_RUNNING }; enum
46 UIServiceRunningState QueryServiceState() const;
68 UIServiceRunningState state_;
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/services/uiservice/src/
H A Dui_mgr_service.cpp40 state_(UIServiceRunningState::STATE_NOT_START) in UIMgrService()
64 if (state_ == UIServiceRunningState::STATE_RUNNING) { in OnStart()
70 state_ = UIServiceRunningState::STATE_RUNNING; in OnStart()
108 state_ = UIServiceRunningState::STATE_NOT_START; in OnStop()
112 UIServiceRunningState UIMgrService::QueryServiceState() const in QueryServiceState()