Home
last modified time | relevance | path

Searched refs:privacyWindowList (Results 1 - 21 of 21) sorted by relevance

/foundation/window/window_manager/dm/src/zidl/
H A Ddisplay_manager_agent_stub.cpp234 std::vector<std::string> privacyWindowList; in ProcPrivateWindowList() local
235 data.ReadStringVector(&privacyWindowList); in ProcPrivateWindowList()
236 NotifyPrivateStateWindowListChanged(displayId, privacyWindowList); in ProcPrivateWindowList()
H A Ddisplay_manager_agent_proxy.cpp344 std::vector<std::string> privacyWindowList) in NotifyPrivateStateWindowListChanged()
363 if (!data.WriteStringVector(privacyWindowList)) { in NotifyPrivateStateWindowListChanged()
364 WLOGFE("Write privacyWindowList failed"); in NotifyPrivateStateWindowListChanged()
343 NotifyPrivateStateWindowListChanged(DisplayId id, std::vector<std::string> privacyWindowList) NotifyPrivateStateWindowListChanged() argument
/foundation/window/window_manager/window_scene/test/dms_unittest/
H A Dscreen_session_manager_client_test.cpp39 void OnPrivateWindowListChange(DisplayId displayId, std::vector<std::string> privacyWindowList) in OnPrivateWindowListChange() argument
43 std::vector<std::string> result = privacyWindowList; in OnPrivateWindowListChange()
48 WLOGFI("privacyWindowList: %{public}s", concatenatedString.c_str()); in OnPrivateWindowListChange()
49 callback_(privacyWindowList); in OnPrivateWindowListChange()
347 std::vector<std::string> privacyWindowList{"win0", "win1"}; in HWTEST_F()
350 listener_->setCallback([privacyWindowList, privacyWindowList2](std::vector<std::string> windowList) in HWTEST_F()
352 EXPECT_EQ(windowList, privacyWindowList); in HWTEST_F()
357 screenSessionManagerClient_->SetScreenPrivacyWindowList(id, privacyWindowList); in HWTEST_F()
1243 std::vector<std::string> privacyWindowList{"win0", "win1"}; in HWTEST_F()
1246 listener_->setCallback([privacyWindowList, privacyWindowList in HWTEST_F()
[all...]
H A Dscreen_session_manager_test.cpp1990 std::vector<std::string> privacyWindowList{"win0", "win1"}; in HWTEST_F()
1993 ssm_->NotifyPrivateWindowListChanged(id, privacyWindowList); in HWTEST_F()
2042 std::vector<std::string> privacyWindowList{"win0", "win1"}; in HWTEST_F()
2045 ssm_->SetScreenPrivacyWindowList(id, privacyWindowList); in HWTEST_F()
H A Dscreen_session_manager_proxy_test.cpp93 std::vector<std::string> privacyWindowList{"win0", "win1"}; in HWTEST_F()
101 screenSessionManagerProxy->SetScreenPrivacyWindowList(id, privacyWindowList); in HWTEST_F()
H A Dscreen_session_manager_stub_test.cpp1313 std::vector<std::string> privacyWindowList{"win0", "win1"}; in HWTEST_F()
1314 data.WriteStringVector(privacyWindowList); in HWTEST_F()
/foundation/window/window_manager/dm/include/
H A Ddisplay_manager_agent_default.h42 void NotifyPrivateStateWindowListChanged(DisplayId id, std::vector<std::string> privacyWindowList) override {};
/foundation/window/window_manager/dm/test/unittest/
H A Ddisplay_manager_agent_stub_test.cpp283 std::vector<std::string> privacyWindowList{"win0", "win1"}; in HWTEST_F()
284 data.WriteStringVector(privacyWindowList); in HWTEST_F()
383 std::vector<std::string> privacyWindowList{"win0", "win1"}; in HWTEST_F()
384 data.WriteStringVector(privacyWindowList); in HWTEST_F()
H A Ddisplay_manager_agent_proxy_test.cpp624 std::vector<std::string> privacyWindowList{"win0", "win1"}; in HWTEST_F()
632 displayManagerAgentProxy->NotifyPrivateStateWindowListChanged(id, privacyWindowList); in HWTEST_F()
/foundation/window/window_manager/dm/include/zidl/
H A Ddisplay_manager_agent_interface.h82 virtual void NotifyPrivateStateWindowListChanged(DisplayId id, std::vector<std::string> privacyWindowList) = 0;
H A Ddisplay_manager_agent_proxy.h42 virtual void NotifyPrivateStateWindowListChanged(DisplayId id, std::vector<std::string> privacyWindowList) override;
/foundation/window/window_manager/window_scene/screen_session_manager_client/include/
H A Dscreen_session_manager_client.h59 void SetScreenPrivacyWindowList(DisplayId id, std::vector<std::string> privacyWindowList);
/foundation/window/window_manager/window_scene/screen_session_manager_client/src/
H A Dscreen_session_manager_client.cpp388 void ScreenSessionManagerClient::SetScreenPrivacyWindowList(DisplayId id, std::vector<std::string> privacyWindowList) in SetScreenPrivacyWindowList() argument
395 screenSessionManager_->SetScreenPrivacyWindowList(id, privacyWindowList); in SetScreenPrivacyWindowList()
/foundation/window/window_manager/interfaces/innerkits/dm/
H A Ddisplay_manager.h82 * @param privacyWindowList privacywindow bundlename list of the target display.
85 [[maybe_unused]]std::vector<std::string> privacyWindowList) {} in OnPrivateWindowListChange()
84 OnPrivateWindowListChange([[maybe_unused]]DisplayId displayId, [[maybe_unused]]std::vector<std::string> privacyWindowList) OnPrivateWindowListChange() argument
/foundation/window/window_manager/dm/src/
H A Ddisplay_manager.cpp101 void NotifyPrivateStateWindowListChanged(DisplayId id, std::vector<std::string> privacyWindowList);
289 virtual void NotifyPrivateStateWindowListChanged(DisplayId id, std::vector<std::string> privacyWindowList) override
291 pImpl_->NotifyPrivateStateWindowListChanged(id, privacyWindowList);
1029 void DisplayManager::Impl::NotifyPrivateStateWindowListChanged(DisplayId id, std::vector<std::string> privacyWindowList) in NotifyPrivateStateWindowListChanged() argument
1037 listener->OnPrivateWindowListChange(id, privacyWindowList); in NotifyPrivateStateWindowListChanged()
/foundation/window/window_manager/window_scene/screen_session_manager/src/zidl/
H A Dscreen_session_manager_stub.cpp744 std::vector<std::string> privacyWindowList; in OnRemoteRequest() local
745 data.ReadStringVector(&privacyWindowList); in OnRemoteRequest()
746 SetScreenPrivacyWindowList(displayId, privacyWindowList); in OnRemoteRequest()
H A Dscreen_session_manager_proxy.cpp2635 void ScreenSessionManagerProxy::SetScreenPrivacyWindowList(DisplayId id, std::vector<std::string> privacyWindowList) in SetScreenPrivacyWindowList() argument
2654 if (!data.WriteStringVector(privacyWindowList)) { in SetScreenPrivacyWindowList()
2655 WLOGFE("Write privacyWindowList failed"); in SetScreenPrivacyWindowList()
/foundation/window/window_manager/window_scene/screen_session_manager/include/
H A Dscreen_session_manager.h180 void NotifyPrivateWindowListChanged(DisplayId id, std::vector<std::string> privacyWindowList);
267 void SetScreenPrivacyWindowList(DisplayId id, std::vector<std::string> privacyWindowList) override;
/foundation/window/window_manager/window_scene/screen_session_manager/include/zidl/
H A Dscreen_session_manager_interface.h172 virtual void SetScreenPrivacyWindowList(DisplayId id, std::vector<std::string> privacyWindowList) {} in SetScreenPrivacyWindowList() argument
H A Dscreen_session_manager_proxy.h164 void SetScreenPrivacyWindowList(DisplayId id, std::vector<std::string> privacyWindowList) override;
/foundation/window/window_manager/window_scene/screen_session_manager/src/
H A Dscreen_session_manager.cpp4377 void ScreenSessionManager::SetScreenPrivacyWindowList(DisplayId id, std::vector<std::string> privacyWindowList) in SetScreenPrivacyWindowList() argument
4396 NotifyPrivateWindowListChanged(id, privacyWindowList); in SetScreenPrivacyWindowList()
4399 void ScreenSessionManager::NotifyPrivateWindowListChanged(DisplayId id, std::vector<std::string> privacyWindowList) in NotifyPrivateWindowListChanged() argument
4407 agent->NotifyPrivateStateWindowListChanged(id, privacyWindowList); in NotifyPrivateWindowListChanged()

Completed in 42 milliseconds