/foundation/window/window_manager/dmserver/test/unittest/ |
H A D | display_manager_service_inner_test.cpp | 211 bool hasPrivate = false; in HWTEST_F() local 213 inner.NotifyPrivateWindowStateChanged(hasPrivate); in HWTEST_F() 214 EXPECT_EQ(false, hasPrivate); in HWTEST_F()
|
H A D | display_manager_agent_controller_test.cpp | 263 bool hasPrivate = true; in HWTEST_F() local 265 displayManagerAgentController.NotifyPrivateWindowStateChanged(hasPrivate); in HWTEST_F() 271 displayManagerAgentController.NotifyPrivateWindowStateChanged(hasPrivate); in HWTEST_F()
|
/foundation/window/window_manager/window_scene/screen_session_manager_client/src/ |
H A D | screen_session_manager_client.cpp | 366 void ScreenSessionManagerClient::SetScreenPrivacyState(bool hasPrivate) in SetScreenPrivacyState() argument 372 WLOGFD("Begin calling the SetScreenPrivacyState() of screenSessionManager_, hasPrivate: %{public}d", hasPrivate); in SetScreenPrivacyState() 373 screenSessionManager_->SetScreenPrivacyState(hasPrivate); in SetScreenPrivacyState() 377 void ScreenSessionManagerClient::SetPrivacyStateByDisplayId(DisplayId id, bool hasPrivate) in SetPrivacyStateByDisplayId() argument 383 WLOGFD("Begin calling the SetPrivacyStateByDisplayId, hasPrivate: %{public}d", hasPrivate); in SetPrivacyStateByDisplayId() 384 screenSessionManager_->SetPrivacyStateByDisplayId(id, hasPrivate); in SetPrivacyStateByDisplayId()
|
/foundation/window/window_manager/window_scene/test/dms_unittest/ |
H A D | screen_session_manager_client_test.cpp | 35 void OnPrivateWindow(bool hasPrivate) {WLOGFI("IPrivateWindowListener hasPrivatewindow: %{public}u", hasPrivate);} in OnPrivateWindow() argument 302 bool hasPrivate = true; in HWTEST_F() local 303 screenSessionManagerClient_->SetPrivacyStateByDisplayId(id, hasPrivate); in HWTEST_F() 323 bool hasPrivate = false; in HWTEST_F() local 324 screenSessionManagerClient_->SetPrivacyStateByDisplayId(id, hasPrivate); in HWTEST_F() 825 bool hasPrivate = false; in HWTEST_F() local 827 screenSessionManagerClient_->SetScreenPrivacyState(hasPrivate); in HWTEST_F() 837 bool hasPrivate = false; in HWTEST_F() local 842 screenSessionManagerClient_->SetScreenPrivacyState(hasPrivate); in HWTEST_F() 853 bool hasPrivate = false; HWTEST_F() local 1164 bool hasPrivate = false; HWTEST_F() local [all...] |
/foundation/window/window_manager/dmserver/src/ |
H A D | display_manager_agent_controller.cpp | 195 void DisplayManagerAgentController::NotifyPrivateWindowStateChanged(bool hasPrivate)
in NotifyPrivateWindowStateChanged() argument 201 WLOGI("PrivateWindow status : %{public}u", hasPrivate);
in NotifyPrivateWindowStateChanged() 203 agent->NotifyPrivateWindowStateChanged(hasPrivate);
in NotifyPrivateWindowStateChanged()
|
H A D | display_manager_service_inner.cpp | 163 void DisplayManagerServiceInner::NotifyPrivateWindowStateChanged(bool hasPrivate)
in NotifyPrivateWindowStateChanged() argument 165 return DisplayManagerService::GetInstance().NotifyPrivateWindowStateChanged(hasPrivate);
in NotifyPrivateWindowStateChanged()
|
/foundation/window/window_manager/test/systemtest/dms/ |
H A D | private_window_test.cpp | 33 virtual void OnPrivateWindow(bool hasPrivate) in OnPrivateWindow() argument
|
/foundation/window/window_manager/window_scene/screen_session_manager_client/include/ |
H A D | screen_session_manager_client.h | 57 void SetScreenPrivacyState(bool hasPrivate); 58 void SetPrivacyStateByDisplayId(DisplayId id, bool hasPrivate);
|
/foundation/window/window_manager/dm/include/ |
H A D | display_manager_agent_default.h | 41 void NotifyPrivateWindowStateChanged(bool hasPrivate) override {};
|
/foundation/window/window_manager/dmserver/include/ |
H A D | display_manager_agent_controller.h | 47 void NotifyPrivateWindowStateChanged(bool hasPrivate);
|
H A D | display_manager_service_inner.h | 53 void NotifyPrivateWindowStateChanged(bool hasPrivate);
|
/foundation/window/window_manager/dm/test/unittest/ |
H A D | display_manager_agent_proxy_test.cpp | 578 bool hasPrivate = false; in HWTEST_F() local 586 displayManagerAgentProxy->NotifyPrivateWindowStateChanged(hasPrivate); in HWTEST_F() 600 bool hasPrivate = true; in HWTEST_F() local 608 displayManagerAgentProxy->NotifyPrivateWindowStateChanged(hasPrivate); in HWTEST_F()
|
/foundation/window/window_manager/interfaces/kits/napi/display_runtime/ |
H A D | js_display_listener.cpp | 221 void JsDisplayListener::OnPrivateWindow(bool hasPrivate)
in OnPrivateWindow() argument 224 WLOGI("OnPrivateWindow is called, private status: %{public}u", static_cast<uint32_t>(hasPrivate));
in OnPrivateWindow() 233 auto napiTask = [self = weakRef_, hasPrivate, env = env_]() {
in OnPrivateWindow() 240 napi_value argv[] = {CreateJsValue(env, hasPrivate)};
in OnPrivateWindow()
|
H A D | js_display_listener.h | 44 void OnPrivateWindow(bool hasPrivate) override;
|
/foundation/window/window_manager/dm/src/zidl/ |
H A D | display_manager_agent_stub.cpp | 226 bool hasPrivate = data.ReadBool();
in ProcPrivateWindow() local 227 NotifyPrivateWindowStateChanged(hasPrivate);
in ProcPrivateWindow()
|
H A D | display_manager_agent_proxy.cpp | 319 void DisplayManagerAgentProxy::NotifyPrivateWindowStateChanged(bool hasPrivate)
in NotifyPrivateWindowStateChanged() argument 334 if (!data.WriteBool(hasPrivate)) {
in NotifyPrivateWindowStateChanged()
|
/foundation/window/window_manager/dm/include/zidl/ |
H A D | display_manager_agent_interface.h | 81 virtual void NotifyPrivateWindowStateChanged(bool hasPrivate) = 0;
|
H A D | display_manager_agent_proxy.h | 41 virtual void NotifyPrivateWindowStateChanged(bool hasPrivate) override;
|
/foundation/window/window_manager/window_scene/screen_session_manager/include/zidl/ |
H A D | screen_session_manager_interface.h | 170 virtual void SetScreenPrivacyState(bool hasPrivate) {} in SetScreenPrivacyState() argument 171 virtual void SetPrivacyStateByDisplayId(DisplayId id, bool hasPrivate) {} in SetPrivacyStateByDisplayId() argument
|
H A D | screen_session_manager_proxy.h | 162 void SetScreenPrivacyState(bool hasPrivate) override; 163 void SetPrivacyStateByDisplayId(DisplayId id, bool hasPrivate) override;
|
/foundation/window/window_manager/window_scene/screen_session_manager/include/ |
H A D | screen_session_manager.h | 179 void NotifyPrivateSessionStateChanged(bool hasPrivate); 265 void SetScreenPrivacyState(bool hasPrivate) override; 266 void SetPrivacyStateByDisplayId(DisplayId id, bool hasPrivate) override;
|
/foundation/window/window_manager/window_scene/screen_session_manager/src/zidl/ |
H A D | screen_session_manager_stub.cpp | 732 auto hasPrivate = data.ReadBool(); in OnRemoteRequest() local 733 SetScreenPrivacyState(hasPrivate); in OnRemoteRequest() 738 auto hasPrivate = data.ReadBool(); in OnRemoteRequest() local 739 SetPrivacyStateByDisplayId(displayId, hasPrivate); in OnRemoteRequest()
|
/foundation/multimedia/player_framework/services/services/screen_capture/server/ |
H A D | screen_capture_server.h | 225 void OnPrivateWindow(bool hasPrivate) override; 293 void OnDMPrivateWindowChange(bool hasPrivate);
|
/foundation/window/window_manager/interfaces/innerkits/dm/ |
H A D | display_manager.h | 70 * @param hasPrivate True means the display has private window, false means the opposite.
72 virtual void OnPrivateWindow([[maybe_unused]]bool hasPrivate) {}
in OnPrivateWindow() argument
|
/foundation/window/window_manager/test/fuzztest/dms/displaymanager_fuzzer/ |
H A D | displaymanager_fuzzer.cpp | 49 void OnPrivateWindow(bool hasPrivate) override
|