/foundation/window/window_manager/window_scene/session_manager/include/zidl/ |
H A D | scene_session_manager_proxy.h | 103 WSError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) override;
|
H A D | scene_session_manager_interface.h | 256 WSError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) override
|
/foundation/window/window_manager/window_scene/test/unittest/ |
H A D | scene_session_manager_test3.cpp | 1511 int32_t targetPersistentId = INVALID_SESSION_ID; in HWTEST_F() local 1512 WSError result01 = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId); in HWTEST_F() 1514 targetPersistentId = 1; in HWTEST_F() 1515 WSError result02 = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId); in HWTEST_F() 1518 WSError result03 = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId); in HWTEST_F()
|
H A D | scene_session_manager_test4.cpp | 1076 int32_t targetPersistentId = INVALID_SESSION_ID; in HWTEST_F() local 1077 auto result = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId); in HWTEST_F() 1080 targetPersistentId = 1; in HWTEST_F() 1081 result = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId); in HWTEST_F() 1092 result = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId); in HWTEST_F() 1103 result = ssm_->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId); in HWTEST_F()
|
H A D | scene_session_manager_stub_test.cpp | 1802 int32_t targetPersistentId = 65535; in HWTEST_F() local 1803 data.WriteInt32(targetPersistentId); in HWTEST_F()
|
/foundation/window/window_manager/interfaces/innerkits/wm/ |
H A D | window_manager.h | 733 * @param targetPersistentId Window id which the focus shift to 736 WMError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId);
|
/foundation/window/window_manager/wm/include/ |
H A D | window_adapter.h | 101 virtual WMError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId);
|
/foundation/window/window_manager/wmserver/include/zidl/ |
H A D | window_manager_interface.h | 165 virtual WSError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) in ShiftAppWindowFocus() argument
|
/foundation/window/window_manager/wm/src/ |
H A D | window_adapter.cpp | 737 WMError WindowAdapter::ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) in ShiftAppWindowFocus() argument 744 wmsProxy->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId)); in ShiftAppWindowFocus()
|
H A D | window_manager.cpp | 1265 WMError WindowManager::ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId)
in ShiftAppWindowFocus() argument 1267 WMError ret = SingletonContainer::Get<WindowAdapter>().ShiftAppWindowFocus(sourcePersistentId, targetPersistentId);
in ShiftAppWindowFocus()
|
/foundation/window/window_manager/interfaces/kits/napi/window_runtime/window_manager_napi/ |
H A D | js_window_manager.cpp | 1150 int32_t targetPersistentId = static_cast<int32_t>(INVALID_WINDOW_ID);
in OnShiftAppWindowFocus() local 1155 if (errCode == WMError::WM_OK && !ConvertFromJsValue(env, argv[1], targetPersistentId)) {
in OnShiftAppWindowFocus() 1166 SingletonContainer::Get<WindowManager>().ShiftAppWindowFocus(sourcePersistentId, targetPersistentId));
in OnShiftAppWindowFocus()
|
/foundation/window/window_manager/window_scene/session_manager/src/zidl/ |
H A D | scene_session_manager_stub.cpp | 957 int32_t targetPersistentId = 0; in HandleShiftAppWindowFocus() local 958 if (!data.ReadInt32(sourcePersistentId) ||!data.ReadInt32(targetPersistentId)) { in HandleShiftAppWindowFocus() 959 TLOGE(WmsLogTag::WMS_FOCUS, "read sourcePersistentId or targetPersistentId failed"); in HandleShiftAppWindowFocus() 962 WSError ret = ShiftAppWindowFocus(sourcePersistentId, targetPersistentId); in HandleShiftAppWindowFocus()
|
H A D | scene_session_manager_proxy.cpp | 1798 WSError SceneSessionManagerProxy::ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) in ShiftAppWindowFocus() argument 1814 if (!data.WriteUint32(targetPersistentId)) { in ShiftAppWindowFocus() 1815 WLOGFE("Write targetPersistentId failed"); in ShiftAppWindowFocus()
|
/foundation/window/window_manager/window_scene/session_manager/include/ |
H A D | scene_session_manager.h | 241 WSError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) override;
|
/foundation/window/window_manager/window_scene/session_manager/src/ |
H A D | scene_session_manager.cpp | 9435 WSError SceneSessionManager::ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) in ShiftAppWindowFocus() argument 9437 WLOGFI("from id: %{public}d to id: %{public}d", sourcePersistentId, targetPersistentId); in ShiftAppWindowFocus() 9442 if (targetPersistentId == focusedSessionId_) { in ShiftAppWindowFocus() 9452 ret = GetAppMainSceneSession(targetSession, targetPersistentId); in ShiftAppWindowFocus() 9471 return RequestSessionFocus(targetPersistentId, false, reason); in ShiftAppWindowFocus()
|