/foundation/window/window_manager/dm/src/zidl/ |
H A D | display_manager_agent_stub.cpp | 234 std::vector<std::string> privacyWindowList;
in ProcPrivateWindowList() local 235 data.ReadStringVector(&privacyWindowList);
in ProcPrivateWindowList() 236 NotifyPrivateStateWindowListChanged(displayId, privacyWindowList);
in ProcPrivateWindowList()
|
H A D | display_manager_agent_proxy.cpp | 344 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 D | screen_session_manager_client_test.cpp | 39 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 D | screen_session_manager_test.cpp | 1990 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 D | screen_session_manager_proxy_test.cpp | 93 std::vector<std::string> privacyWindowList{"win0", "win1"}; in HWTEST_F() 101 screenSessionManagerProxy->SetScreenPrivacyWindowList(id, privacyWindowList); in HWTEST_F()
|
H A D | screen_session_manager_stub_test.cpp | 1313 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 D | display_manager_agent_default.h | 42 void NotifyPrivateStateWindowListChanged(DisplayId id, std::vector<std::string> privacyWindowList) override {};
|
/foundation/window/window_manager/dm/test/unittest/ |
H A D | display_manager_agent_stub_test.cpp | 283 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 D | display_manager_agent_proxy_test.cpp | 624 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 D | display_manager_agent_interface.h | 82 virtual void NotifyPrivateStateWindowListChanged(DisplayId id, std::vector<std::string> privacyWindowList) = 0;
|
H A D | display_manager_agent_proxy.h | 42 virtual void NotifyPrivateStateWindowListChanged(DisplayId id, std::vector<std::string> privacyWindowList) override;
|
/foundation/window/window_manager/window_scene/screen_session_manager_client/include/ |
H A D | screen_session_manager_client.h | 59 void SetScreenPrivacyWindowList(DisplayId id, std::vector<std::string> privacyWindowList);
|
/foundation/window/window_manager/window_scene/screen_session_manager_client/src/ |
H A D | screen_session_manager_client.cpp | 388 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 D | display_manager.h | 82 * @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 D | display_manager.cpp | 101 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 D | screen_session_manager_stub.cpp | 744 std::vector<std::string> privacyWindowList; in OnRemoteRequest() local 745 data.ReadStringVector(&privacyWindowList); in OnRemoteRequest() 746 SetScreenPrivacyWindowList(displayId, privacyWindowList); in OnRemoteRequest()
|
H A D | screen_session_manager_proxy.cpp | 2635 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 D | screen_session_manager.h | 180 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 D | screen_session_manager_interface.h | 172 virtual void SetScreenPrivacyWindowList(DisplayId id, std::vector<std::string> privacyWindowList) {} in SetScreenPrivacyWindowList() argument
|
H A D | screen_session_manager_proxy.h | 164 void SetScreenPrivacyWindowList(DisplayId id, std::vector<std::string> privacyWindowList) override;
|
/foundation/window/window_manager/window_scene/screen_session_manager/src/ |
H A D | screen_session_manager.cpp | 4377 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()
|