Home
last modified time | relevance | path

Searched refs:targetPersistentId (Results 1 - 15 of 15) sorted by relevance

/foundation/window/window_manager/window_scene/session_manager/include/zidl/
H A Dscene_session_manager_proxy.h103 WSError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) override;
H A Dscene_session_manager_interface.h256 WSError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) override
/foundation/window/window_manager/window_scene/test/unittest/
H A Dscene_session_manager_test3.cpp1511 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 Dscene_session_manager_test4.cpp1076 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 Dscene_session_manager_stub_test.cpp1802 int32_t targetPersistentId = 65535; in HWTEST_F() local
1803 data.WriteInt32(targetPersistentId); in HWTEST_F()
/foundation/window/window_manager/interfaces/innerkits/wm/
H A Dwindow_manager.h733 * @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 Dwindow_adapter.h101 virtual WMError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId);
/foundation/window/window_manager/wmserver/include/zidl/
H A Dwindow_manager_interface.h165 virtual WSError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) in ShiftAppWindowFocus() argument
/foundation/window/window_manager/wm/src/
H A Dwindow_adapter.cpp737 WMError WindowAdapter::ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) in ShiftAppWindowFocus() argument
744 wmsProxy->ShiftAppWindowFocus(sourcePersistentId, targetPersistentId)); in ShiftAppWindowFocus()
H A Dwindow_manager.cpp1265 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 Djs_window_manager.cpp1150 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 Dscene_session_manager_stub.cpp957 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 Dscene_session_manager_proxy.cpp1798 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 Dscene_session_manager.h241 WSError ShiftAppWindowFocus(int32_t sourcePersistentId, int32_t targetPersistentId) override;
/foundation/window/window_manager/window_scene/session_manager/src/
H A Dscene_session_manager.cpp9435 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()

Completed in 46 milliseconds